diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-06 07:39:36 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-08 09:05:06 -0700 |
commit | d52014556d8a1f3be57db4f04d6fdce06af87493 (patch) | |
tree | cd7ee629c30a7fce0a835604c29657f36835f4c6 | |
parent | 62205e08e6192a1aa67cc647994c69d9cc55e6f6 (diff) | |
download | linux-d52014556d8a1f3be57db4f04d6fdce06af87493.tar.gz linux-d52014556d8a1f3be57db4f04d6fdce06af87493.tar.bz2 linux-d52014556d8a1f3be57db4f04d6fdce06af87493.zip |
Input: w90p910_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>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/keyboard/w90p910_keypad.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/keyboard/w90p910_keypad.c b/drivers/input/keyboard/w90p910_keypad.c index ee163bee8cce..72e6a56a2eba 100644 --- a/drivers/input/keyboard/w90p910_keypad.c +++ b/drivers/input/keyboard/w90p910_keypad.c @@ -249,7 +249,6 @@ static int w90p910_keypad_remove(struct platform_device *pdev) res = platform_get_resource(pdev, IORESOURCE_MEM, 0); release_mem_region(res->start, resource_size(res)); - platform_set_drvdata(pdev, NULL); kfree(keypad); return 0; |