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

usb: chipidea: 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 52830d77
...@@ -215,7 +215,6 @@ static struct platform_driver ci_hdrc_imx_driver = { ...@@ -215,7 +215,6 @@ static struct platform_driver ci_hdrc_imx_driver = {
.remove = ci_hdrc_imx_remove, .remove = ci_hdrc_imx_remove,
.driver = { .driver = {
.name = "imx_usb", .name = "imx_usb",
.owner = THIS_MODULE,
.of_match_table = ci_hdrc_imx_dt_ids, .of_match_table = ci_hdrc_imx_dt_ids,
}, },
}; };
......
...@@ -61,7 +61,6 @@ static struct platform_driver ci_hdrc_zevio_driver = { ...@@ -61,7 +61,6 @@ static struct platform_driver ci_hdrc_zevio_driver = {
.remove = ci_hdrc_zevio_remove, .remove = ci_hdrc_zevio_remove,
.driver = { .driver = {
.name = "zevio_usb", .name = "zevio_usb",
.owner = THIS_MODULE,
.of_match_table = ci_hdrc_zevio_dt_ids, .of_match_table = ci_hdrc_zevio_dt_ids,
}, },
}; };
......
...@@ -752,7 +752,6 @@ static struct platform_driver ci_hdrc_driver = { ...@@ -752,7 +752,6 @@ static struct platform_driver ci_hdrc_driver = {
.remove = ci_hdrc_remove, .remove = ci_hdrc_remove,
.driver = { .driver = {
.name = "ci_hdrc", .name = "ci_hdrc",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -372,7 +372,6 @@ static struct platform_driver usbmisc_imx_driver = { ...@@ -372,7 +372,6 @@ static struct platform_driver usbmisc_imx_driver = {
.remove = usbmisc_imx_remove, .remove = usbmisc_imx_remove,
.driver = { .driver = {
.name = "usbmisc_imx", .name = "usbmisc_imx",
.owner = THIS_MODULE,
.of_match_table = usbmisc_imx_dt_ids, .of_match_table = usbmisc_imx_dt_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