dect
/
linux-2.6
Archived
13
0
Fork 0

extcon: arizona: Free MICDET IRQ on error during probe

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mark Brown 2012-08-26 13:58:20 -07:00 committed by Greg Kroah-Hartman
parent a500e0e735
commit 80732cc102
1 changed files with 3 additions and 1 deletions

View File

@ -488,11 +488,13 @@ static int __devinit arizona_extcon_probe(struct platform_device *pdev)
ret = input_register_device(info->input);
if (ret) {
dev_err(&pdev->dev, "Can't register input device: %d\n", ret);
goto err_fall_wake;
goto err_micdet;
}
return 0;
err_micdet:
arizona_free_irq(arizona, ARIZONA_IRQ_MICDET, info);
err_fall_wake:
arizona_set_irq_wake(arizona, ARIZONA_IRQ_JD_FALL, 0);
err_fall: