diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-06 10:40:39 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-08 12:04:16 -0400 |
commit | 7bcbcaa584f9c1723f26413f585a34303e918caa (patch) | |
tree | ac9ba579436c186bd1e474103a720b162cd92c7a /drivers/input/touchscreen | |
parent | 3e056a38894481e278b8d504cf7ffc8a64d5e9e0 (diff) |
Input: w90p910_ts - 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/touchscreen')
-rw-r--r-- | drivers/input/touchscreen/w90p910_ts.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/w90p910_ts.c b/drivers/input/touchscreen/w90p910_ts.c index d2ef8f05c66e..003d0c3b5d08 100644 --- a/drivers/input/touchscreen/w90p910_ts.c +++ b/drivers/input/touchscreen/w90p910_ts.c | |||
@@ -318,8 +318,6 @@ static int w90x900ts_remove(struct platform_device *pdev) | |||
318 | input_unregister_device(w90p910_ts->input); | 318 | input_unregister_device(w90p910_ts->input); |
319 | kfree(w90p910_ts); | 319 | kfree(w90p910_ts); |
320 | 320 | ||
321 | platform_set_drvdata(pdev, NULL); | ||
322 | |||
323 | return 0; | 321 | return 0; |
324 | } | 322 | } |
325 | 323 | ||