diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-05-23 10:49:10 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-06-07 09:35:16 +0200 |
commit | 2ec64c9d0d5f6a4fd17dce4fa6645d98b8be0849 (patch) | |
tree | 8ab507c7eb8f6627bca9b0e1046f991c2a093629 /drivers/gpio/gpio-tps65910.c | |
parent | 602cf63875f73f3faaa8b3b21a6ba8d1aa32424a (diff) | |
download | linux-stable-2ec64c9d0d5f6a4fd17dce4fa6645d98b8be0849.tar.gz linux-stable-2ec64c9d0d5f6a4fd17dce4fa6645d98b8be0849.tar.bz2 linux-stable-2ec64c9d0d5f6a4fd17dce4fa6645d98b8be0849.zip |
gpio: remove redundant owner assignments of drivers
A platform_driver need not set an owner since it will be populated
by platform_driver_register().
Likewise for mcb_driver (gpio-menz127.c).
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-tps65910.c')
-rw-r--r-- | drivers/gpio/gpio-tps65910.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tps65910.c b/drivers/gpio/gpio-tps65910.c index 0ae6a5a54ea8..e63d7dabf78b 100644 --- a/drivers/gpio/gpio-tps65910.c +++ b/drivers/gpio/gpio-tps65910.c @@ -184,7 +184,6 @@ skip_init: static struct platform_driver tps65910_gpio_driver = { .driver.name = "tps65910-gpio", - .driver.owner = THIS_MODULE, .probe = tps65910_gpio_probe, }; |