diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:39 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:39 +0200 |
commit | 1d05726c315c146b2ac0c5e94f01fde0c2b73dc1 (patch) | |
tree | be39ba6782313a9861b1d2053e6a8ca1749302f7 /drivers/input/keyboard/goldfish_events.c | |
parent | iio: adc: drop owner assignment from platform_drivers (diff) | |
download | linux-1d05726c315c146b2ac0c5e94f01fde0c2b73dc1.tar.xz linux-1d05726c315c146b2ac0c5e94f01fde0c2b73dc1.zip |
input: keyboard: 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/input/keyboard/goldfish_events.c')
-rw-r--r-- | drivers/input/keyboard/goldfish_events.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/keyboard/goldfish_events.c b/drivers/input/keyboard/goldfish_events.c index 69e854763370..907e4e278fce 100644 --- a/drivers/input/keyboard/goldfish_events.c +++ b/drivers/input/keyboard/goldfish_events.c @@ -181,7 +181,6 @@ static int events_probe(struct platform_device *pdev) static struct platform_driver events_driver = { .probe = events_probe, .driver = { - .owner = THIS_MODULE, .name = "goldfish_events", }, }; |