mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
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>
This commit is contained in:
parent
ee65d4b36d
commit
e77a715ac3
@ -182,7 +182,7 @@ static int pmic8xxx_pwrkey_probe(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
free_press_irq:
|
free_press_irq:
|
||||||
free_irq(key_press_irq, pwrkey);
|
free_irq(key_press_irq, pwr);
|
||||||
unreg_input_dev:
|
unreg_input_dev:
|
||||||
input_unregister_device(pwr);
|
input_unregister_device(pwr);
|
||||||
pwr = NULL;
|
pwr = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user