aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-06 10:34:41 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2013-05-08 12:04:50 -0400
commit19b1d74fee8fd9dffb361e29daf0b0a36d398190 (patch)
tree164903f3598916400f80ca9fcd3bf63bfef74f46
parent776f2accca36262f5fec51e0574a875554dd400c (diff)
Input: omap4-keypad - remove redundant platform_set_drvdata()
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 <sachin.kamat@linaro.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/keyboard/omap4-keypad.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/keyboard/omap4-keypad.c b/drivers/input/keyboard/omap4-keypad.c
index e25b022692cd..d715c0d10bf2 100644
--- a/drivers/input/keyboard/omap4-keypad.c
+++ b/drivers/input/keyboard/omap4-keypad.c
@@ -425,8 +425,6 @@ static int omap4_keypad_remove(struct platform_device *pdev)
425 kfree(keypad_data->keymap); 425 kfree(keypad_data->keymap);
426 kfree(keypad_data); 426 kfree(keypad_data);
427 427
428 platform_set_drvdata(pdev, NULL);
429
430 return 0; 428 return 0;
431} 429}
432 430