diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-03-27 18:46:55 +0100 |
---|---|---|
committer | Dmitry Torokhov <[email protected]> | 2024-03-28 10:54:19 -0700 |
commit | c7df39b2a5643c4df566fb23951f619f8c639042 (patch) | |
tree | fd34ce553f6a3f6caac5d115ea6164b45a0f2a3e | |
parent | 81c32343d04f8ca974681d5fb5d939d2e1f58851 (diff) |
Input: stmpe - drop driver owner assignment
Core in platform_driver_register() already sets the .owner, so driver
does not need to.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
-rw-r--r-- | drivers/input/keyboard/stmpe-keypad.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/keyboard/stmpe-keypad.c b/drivers/input/keyboard/stmpe-keypad.c index 2013c0afd0c3..ef2f44027894 100644 --- a/drivers/input/keyboard/stmpe-keypad.c +++ b/drivers/input/keyboard/stmpe-keypad.c @@ -413,7 +413,6 @@ static void stmpe_keypad_remove(struct platform_device *pdev) static struct platform_driver stmpe_keypad_driver = { .driver.name = "stmpe-keypad", - .driver.owner = THIS_MODULE, .probe = stmpe_keypad_probe, .remove_new = stmpe_keypad_remove, }; |