Commit 5e0b2516 authored by Wolfram Sang's avatar Wolfram Sang

net: ethernet: via: 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 671ebaf7
...@@ -2508,7 +2508,6 @@ static struct platform_driver rhine_driver_platform = { ...@@ -2508,7 +2508,6 @@ static struct platform_driver rhine_driver_platform = {
.remove = rhine_remove_one_platform, .remove = rhine_remove_one_platform,
.driver = { .driver = {
.name = DRV_NAME, .name = DRV_NAME,
.owner = THIS_MODULE,
.of_match_table = rhine_of_tbl, .of_match_table = rhine_of_tbl,
.pm = RHINE_PM_OPS, .pm = RHINE_PM_OPS,
} }
......
...@@ -3281,7 +3281,6 @@ static struct platform_driver velocity_platform_driver = { ...@@ -3281,7 +3281,6 @@ static struct platform_driver velocity_platform_driver = {
.remove = velocity_platform_remove, .remove = velocity_platform_remove,
.driver = { .driver = {
.name = "via-velocity", .name = "via-velocity",
.owner = THIS_MODULE,
.of_match_table = velocity_of_ids, .of_match_table = velocity_of_ids,
.pm = &velocity_pm_ops, .pm = &velocity_pm_ops,
}, },
......
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