diff options
author | Sachin Kamat | 2013-05-05 19:35:04 -0700 |
---|---|---|
committer | Dmitry Torokhov | 2013-05-05 20:14:03 -0700 |
commit | 5ed7ecfc79a7d3f16449e95c7368c396b51e1de9 (patch) | |
tree | 7dcfdcfd1a7364420e0f73d9492a0f7bd4c05920 /drivers/input | |
parent | 45d763f953b5ba90af567153c3e1301d65f510e9 (diff) |
Input: gpio_tilt_polled - 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>
Acked-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/misc/gpio_tilt_polled.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/misc/gpio_tilt_polled.c b/drivers/input/misc/gpio_tilt_polled.c index da05cca8b562..714c68369134 100644 --- a/drivers/input/misc/gpio_tilt_polled.c +++ b/drivers/input/misc/gpio_tilt_polled.c @@ -184,8 +184,6 @@ static int gpio_tilt_polled_remove(struct platform_device *pdev) struct gpio_tilt_polled_dev *tdev = platform_get_drvdata(pdev); const struct gpio_tilt_platform_data *pdata = tdev->pdata; - platform_set_drvdata(pdev, NULL); - input_unregister_polled_device(tdev->poll_dev); input_free_polled_device(tdev->poll_dev); |