diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-12-17 12:03:05 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-12-27 20:18:23 -0500 |
commit | e77a715ac3af14d16c027caebdb0ce5412976b9e (patch) | |
tree | 093d942d486b8923c44cd8b809dca033879f1cc9 | |
parent | ee65d4b36de8ddf4467f788faa5d8ddd1bfcdaa2 (diff) |
Input: pmic8xxx-pwrkey - pass correct device identity to free_irq()
free_irq() in the error handling case is missing when change
pass input device directly to interrupt.
Fixes: b27f8fee4965('Input: pmic8xxx-pwrkey - pass input device directly to interrupt')
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/misc/pmic8xxx-pwrkey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/pmic8xxx-pwrkey.c b/drivers/input/misc/pmic8xxx-pwrkey.c index ef938405a9c6..3914e5ba05a1 100644 --- a/drivers/input/misc/pmic8xxx-pwrkey.c +++ b/drivers/input/misc/pmic8xxx-pwrkey.c | |||
@@ -182,7 +182,7 @@ static int pmic8xxx_pwrkey_probe(struct platform_device *pdev) | |||
182 | return 0; | 182 | return 0; |
183 | 183 | ||
184 | free_press_irq: | 184 | free_press_irq: |
185 | free_irq(key_press_irq, pwrkey); | 185 | free_irq(key_press_irq, pwr); |
186 | unreg_input_dev: | 186 | unreg_input_dev: |
187 | input_unregister_device(pwr); | 187 | input_unregister_device(pwr); |
188 | pwr = NULL; | 188 | pwr = NULL; |