Commit d373860d authored by Wolfram Sang's avatar Wolfram Sang

reset: sti: 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 569d5e91
...@@ -101,7 +101,6 @@ static struct platform_driver stih415_reset_driver = { ...@@ -101,7 +101,6 @@ static struct platform_driver stih415_reset_driver = {
.probe = syscfg_reset_probe, .probe = syscfg_reset_probe,
.driver = { .driver = {
.name = "reset-stih415", .name = "reset-stih415",
.owner = THIS_MODULE,
.of_match_table = stih415_reset_match, .of_match_table = stih415_reset_match,
}, },
}; };
......
...@@ -132,7 +132,6 @@ static struct platform_driver stih416_reset_driver = { ...@@ -132,7 +132,6 @@ static struct platform_driver stih416_reset_driver = {
.probe = syscfg_reset_probe, .probe = syscfg_reset_probe,
.driver = { .driver = {
.name = "reset-stih416", .name = "reset-stih416",
.owner = THIS_MODULE,
.of_match_table = stih416_reset_match, .of_match_table = stih416_reset_match,
}, },
}; };
......
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