summaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-06 07:39:07 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2013-05-08 09:05:03 -0700
commit94521e5b0624d84e2a8a3cb4bd23d46103a6ec57 (patch)
tree1e5fc37a4a12b36267c3409c05103b52941f9d00 /drivers/input
parente78465ed1f2c0f1012d0cb6a9fb9b9a25e4b8c4d (diff)
downloadlinux-94521e5b0624d84e2a8a3cb4bd23d46103a6ec57.tar.gz
linux-94521e5b0624d84e2a8a3cb4bd23d46103a6ec57.tar.xz
Input: tnetv107x-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>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/keyboard/tnetv107x-keypad.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/keyboard/tnetv107x-keypad.c b/drivers/input/keyboard/tnetv107x-keypad.c
index ee1635011292..5f7b427dd7ed 100644
--- a/drivers/input/keyboard/tnetv107x-keypad.c
+++ b/drivers/input/keyboard/tnetv107x-keypad.c
@@ -296,7 +296,6 @@ error_clk:
error_map:
release_mem_region(kp->res->start, resource_size(kp->res));
error_res:
- platform_set_drvdata(pdev, NULL);
kfree(kp);
return error;
}
@@ -311,7 +310,6 @@ static int keypad_remove(struct platform_device *pdev)
clk_put(kp->clk);
iounmap(kp->regs);
release_mem_region(kp->res->start, resource_size(kp->res));
- platform_set_drvdata(pdev, NULL);
kfree(kp);
return 0;