Input: wacom_w8001 - simplify w8001_remove
Since touchscreen driver does not handle any events to be sent to the device we can close serio port first and then unregister the input device. Tested-by: Ping Cheng <pingc@wacom.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
e9496746cc
commit
66fd9385ee
1 changed files with 4 additions and 4 deletions
|
@ -499,12 +499,12 @@ static void w8001_disconnect(struct serio *serio)
|
||||||
{
|
{
|
||||||
struct w8001 *w8001 = serio_get_drvdata(serio);
|
struct w8001 *w8001 = serio_get_drvdata(serio);
|
||||||
|
|
||||||
input_get_device(w8001->dev);
|
|
||||||
input_unregister_device(w8001->dev);
|
|
||||||
serio_close(serio);
|
serio_close(serio);
|
||||||
serio_set_drvdata(serio, NULL);
|
|
||||||
input_put_device(w8001->dev);
|
input_unregister_device(w8001->dev);
|
||||||
kfree(w8001);
|
kfree(w8001);
|
||||||
|
|
||||||
|
serio_set_drvdata(serio, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue