Commit c910367f authored by Wolfram Sang's avatar Wolfram Sang

tty: drop owner assignment from platform_drivers

A platform_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 4b6d6c67
...@@ -1802,7 +1802,6 @@ static struct platform_driver amiga_serial_driver = { ...@@ -1802,7 +1802,6 @@ static struct platform_driver amiga_serial_driver = {
.remove = __exit_p(amiga_serial_remove), .remove = __exit_p(amiga_serial_remove),
.driver = { .driver = {
.name = "amiga-serial", .name = "amiga-serial",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -740,7 +740,6 @@ static const struct of_device_id ehv_bc_tty_of_ids[] = { ...@@ -740,7 +740,6 @@ static const struct of_device_id ehv_bc_tty_of_ids[] = {
static struct platform_driver ehv_bc_tty_driver = { static struct platform_driver ehv_bc_tty_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "ehv-bc", .name = "ehv-bc",
.of_match_table = ehv_bc_tty_of_ids, .of_match_table = ehv_bc_tty_of_ids,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment