diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-06 16:39:07 +0200 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-08 18:05:03 +0200 |
commit | 94521e5b0624d84e2a8a3cb4bd23d46103a6ec57 (patch) | |
tree | 1e5fc37a4a12b36267c3409c05103b52941f9d00 /drivers/input/keyboard/tnetv107x-keypad.c | |
parent | Input: spear-keyboard - remove redundant platform_set_drvdata() (diff) | |
download | linux-94521e5b0624d84e2a8a3cb4bd23d46103a6ec57.tar.xz linux-94521e5b0624d84e2a8a3cb4bd23d46103a6ec57.zip |
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 '')
-rw-r--r-- | drivers/input/keyboard/tnetv107x-keypad.c | 2 |
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; |