diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:50 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:50 +0200 |
commit | 59a9e07b0b1eca239e060a8111e09e4057453192 (patch) | |
tree | a8f341a2149ba99670633a3a83aff9547f12f1c0 | |
parent | usb: misc: drop owner assignment from platform_drivers (diff) | |
download | linux-59a9e07b0b1eca239e060a8111e09e4057453192.tar.xz linux-59a9e07b0b1eca239e060a8111e09e4057453192.zip |
usb: musb: 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: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r-- | drivers/usb/musb/musb_core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index b841ee0bff06..4d81bb9d11db 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -2362,7 +2362,6 @@ static struct platform_driver musb_driver = { .driver = { .name = (char *)musb_driver_name, .bus = &platform_bus_type, - .owner = THIS_MODULE, .pm = MUSB_DEV_PM_OPS, }, .probe = musb_probe, |