Commit 72c62933 authored by Wolfram Sang's avatar Wolfram Sang

soc: ti: 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 1135dc17
...@@ -803,7 +803,6 @@ static struct platform_driver knav_dma_driver = { ...@@ -803,7 +803,6 @@ static struct platform_driver knav_dma_driver = {
.remove = knav_dma_remove, .remove = knav_dma_remove,
.driver = { .driver = {
.name = "keystone-navigator-dma", .name = "keystone-navigator-dma",
.owner = THIS_MODULE,
.of_match_table = of_match, .of_match_table = of_match,
}, },
}; };
......
...@@ -1804,7 +1804,6 @@ static struct platform_driver keystone_qmss_driver = { ...@@ -1804,7 +1804,6 @@ static struct platform_driver keystone_qmss_driver = {
.remove = knav_queue_remove, .remove = knav_queue_remove,
.driver = { .driver = {
.name = "keystone-navigator-qmss", .name = "keystone-navigator-qmss",
.owner = THIS_MODULE,
.of_match_table = keystone_qmss_of_match, .of_match_table = keystone_qmss_of_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