Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a26f5d1 authored by Axel Lin's avatar Axel Lin Committed by Dmitry Torokhov
Browse files

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: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 98417884
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -359,7 +359,7 @@ static int __devexit tps6507x_ts_remove(struct platform_device *pdev)
	cancel_delayed_work_sync(&tsc->work);
	cancel_delayed_work_sync(&tsc->work);
	destroy_workqueue(tsc->wq);
	destroy_workqueue(tsc->wq);


	input_free_device(input_dev);
	input_unregister_device(input_dev);


	tps6507x_dev->ts = NULL;
	tps6507x_dev->ts = NULL;
	kfree(tsc);
	kfree(tsc);