diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:20:39 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:20:39 +0400 |
commit | 1d05726c315c146b2ac0c5e94f01fde0c2b73dc1 (patch) | |
tree | be39ba6782313a9861b1d2053e6a8ca1749302f7 /drivers/input/keyboard/clps711x-keypad.c | |
parent | 770ca15c0369b9237bf143e3f9c1f5a406cb45b4 (diff) | |
download | linux-1d05726c315c146b2ac0c5e94f01fde0c2b73dc1.tar.xz |
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/clps711x-keypad.c')
-rw-r--r-- | drivers/input/keyboard/clps711x-keypad.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/keyboard/clps711x-keypad.c b/drivers/input/keyboard/clps711x-keypad.c index 552b65c6e6b0..27ef29f8fe6a 100644 --- a/drivers/input/keyboard/clps711x-keypad.c +++ b/drivers/input/keyboard/clps711x-keypad.c @@ -194,7 +194,6 @@ MODULE_DEVICE_TABLE(of, clps711x_keypad_of_match); static struct platform_driver clps711x_keypad_driver = { .driver = { .name = "clps711x-keypad", - .owner = THIS_MODULE, .of_match_table = clps711x_keypad_of_match, }, .probe = clps711x_keypad_probe, |