aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2010-09-02 19:52:37 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2010-09-02 20:12:42 -0700
commit8a26f5d18d45d49ff38ad2ddfed9c783dd2a19ab (patch)
tree4e61dff558320a44cab81ba83b8120ce99cfd2f3 /drivers/input/touchscreen
parentInput: tps6507x-ts - add missing call to platform_set_drvdata() (diff)
downloadlinux-dev-8a26f5d18d45d49ff38ad2ddfed9c783dd2a19ab.tar.xz
linux-dev-8a26f5d18d45d49ff38ad2ddfed9c783dd2a19ab.zip
Input: tps6507x-ts - properly unregister input device on removal
Once device is registered we should call input_unregister_device() instead of input_free_device(). Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r--drivers/input/touchscreen/tps6507x-ts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/tps6507x-ts.c b/drivers/input/touchscreen/tps6507x-ts.c
index 728620974dd8..c8c136cf7bbc 100644
--- a/drivers/input/touchscreen/tps6507x-ts.c
+++ b/drivers/input/touchscreen/tps6507x-ts.c
@@ -359,7 +359,7 @@ static int __devexit tps6507x_ts_remove(struct platform_device *pdev)
cancel_delayed_work_sync(&tsc->work);
destroy_workqueue(tsc->wq);
- input_free_device(input_dev);
+ input_unregister_device(input_dev);
tps6507x_dev->ts = NULL;
kfree(tsc);