diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:21:49 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:21:49 +0400 |
commit | 566e0269e58cb95aa759c3f11c831536ae3858d2 (patch) | |
tree | e212a11014a8a007d22d854396838ba481206ba9 /drivers/usb/host/ohci-at91.c | |
parent | 6d3f5f2d895b668ecade4a87d39c9c233b094b8d (diff) | |
download | linux-566e0269e58cb95aa759c3f11c831536ae3858d2.tar.xz |
usb: host: 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>
Diffstat (limited to 'drivers/usb/host/ohci-at91.c')
-rw-r--r-- | drivers/usb/host/ohci-at91.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index e49eb4f90f5d..1a4ea93e620d 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c @@ -664,7 +664,6 @@ static struct platform_driver ohci_hcd_at91_driver = { .resume = ohci_hcd_at91_drv_resume, .driver = { .name = "at91_ohci", - .owner = THIS_MODULE, .of_match_table = of_match_ptr(at91_ohci_dt_ids), }, }; |