summaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen/88pm860x-ts.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-05 19:37:43 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2013-05-05 20:14:29 -0700
commit602b6a02cad6a6473668c5a0176a247e5bc6648a (patch)
tree9cdfeb570c474cba8fdd816d2d3036f9d38c3860 /drivers/input/touchscreen/88pm860x-ts.c
parentad34b42e542366f7b79d2d8a72fdd6ac3c146513 (diff)
Input: 88pm860x-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/88pm860x-ts.c')
-rw-r--r--drivers/input/touchscreen/88pm860x-ts.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/88pm860x-ts.c b/drivers/input/touchscreen/88pm860x-ts.c
index c7068942ebe8..e8d457266b71 100644
--- a/drivers/input/touchscreen/88pm860x-ts.c
+++ b/drivers/input/touchscreen/88pm860x-ts.c
@@ -299,7 +299,6 @@ static int pm860x_touch_remove(struct platform_device *pdev)
input_unregister_device(touch->idev);
free_irq(touch->irq, touch);
- platform_set_drvdata(pdev, NULL);
kfree(touch);
return 0;
}