projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb41eca
)
Input: matrix_keypad - remove redundant platform_set_drvdata()
author
Sachin Kamat
<
[email protected]
>
Mon, 6 May 2013 14:32:57 +0000
(07:32 -0700)
committer
Dmitry Torokhov
<
[email protected]
>
Wed, 8 May 2013 16:04:47 +0000
(09:04 -0700)
Commit
0998d06310
(device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <
[email protected]
>
Acked-by: Marek Vasut <
[email protected]
>
Signed-off-by: Dmitry Torokhov <
[email protected]
>
drivers/input/keyboard/matrix_keypad.c
patch
|
blob
|
history
diff --git
a/drivers/input/keyboard/matrix_keypad.c
b/drivers/input/keyboard/matrix_keypad.c
index 71d77192ac1ef7a1dfa48317b737493a1ac4cffc..90ff73ace42496a26fbec96081847d4f23fcfae6 100644
(file)
--- a/
drivers/input/keyboard/matrix_keypad.c
+++ b/
drivers/input/keyboard/matrix_keypad.c
@@
-549,8
+549,6
@@
static int matrix_keypad_remove(struct platform_device *pdev)
input_unregister_device(keypad->input_dev);
kfree(keypad);
- platform_set_drvdata(pdev, NULL);
-
return 0;
}