aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPramod Gurav <[email protected]>2014-10-07 09:33:16 -0700
committerDmitry Torokhov <[email protected]>2014-10-07 09:55:01 -0700
commitb3f9db49c1d383256f95c53c850e90bc2f4e05e4 (patch)
tree3f95db7d91f61600c87f91af2ba6aefec9280c32
parent848d479361793edb79aa68140cb64d4ec9032d88 (diff)
Input: adp5588-keys - cancel workqueue in failure path
In case we start with the device not fully quiesced we should make sure we cancel the workqueue after freeing interrupt. Signed-off-by: Pramod Gurav <[email protected]> Acked-by: Michael Hennerich <[email protected]> Signed-off-by: Dmitry Torokhov <[email protected]>
-rw-r--r--drivers/input/keyboard/adp5588-keys.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/keyboard/adp5588-keys.c b/drivers/input/keyboard/adp5588-keys.c
index 5ef7fcf0e250..728133ec6d7b 100644
--- a/drivers/input/keyboard/adp5588-keys.c
+++ b/drivers/input/keyboard/adp5588-keys.c
@@ -589,6 +589,7 @@ static int adp5588_probe(struct i2c_client *client,
err_free_irq:
free_irq(client->irq, kpad);
+ cancel_delayed_work_sync(&kpad->work);
err_unreg_dev:
input_unregister_device(input);
input = NULL;