diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:46 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:46 +0200 |
commit | 52830d773ec305f84fa72194b5f1d177bda889d9 (patch) | |
tree | 3366b2e5e4b4dbdb757693c0390b9af04f1fdfbc /drivers/usb/c67x00 | |
parent | 7021949a3150561ce9273158afafc067213e37ea (diff) | |
download | linux-52830d773ec305f84fa72194b5f1d177bda889d9.tar.bz2 |
usb: c67x00: 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/c67x00')
-rw-r--r-- | drivers/usb/c67x00/c67x00-drv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/c67x00/c67x00-drv.c b/drivers/usb/c67x00/c67x00-drv.c index 8db3380c3329..5796c8820514 100644 --- a/drivers/usb/c67x00/c67x00-drv.c +++ b/drivers/usb/c67x00/c67x00-drv.c @@ -221,7 +221,6 @@ static struct platform_driver c67x00_driver = { .probe = c67x00_drv_probe, .remove = c67x00_drv_remove, .driver = { - .owner = THIS_MODULE, .name = "c67x00", }, }; |