gpio: crystalcove: Free IRQ on error path
It appears that all, but request_irq(), calls in the driver are device managed.
In unlikely case of devm_gpiochip_add_data() failure the IRQ left requested.
Free IRQ on error path by switching to devm_request_threaded_irq() API.
Byproduct of this change is a drop of ->remove() callback completely.
Fixes: 945e72db36
("gpio: crystalcove: Use irqchip template")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200728125504.27786-2-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
2a93a0da06
commit
a1cdaa64aa
|
@ -364,9 +364,9 @@ static int crystalcove_gpio_probe(struct platform_device *pdev)
|
||||||
girq->handler = handle_simple_irq;
|
girq->handler = handle_simple_irq;
|
||||||
girq->threaded = true;
|
girq->threaded = true;
|
||||||
|
|
||||||
retval = request_threaded_irq(irq, NULL, crystalcove_gpio_irq_handler,
|
retval = devm_request_threaded_irq(&pdev->dev, irq, NULL,
|
||||||
IRQF_ONESHOT, KBUILD_MODNAME, cg);
|
crystalcove_gpio_irq_handler,
|
||||||
|
IRQF_ONESHOT, KBUILD_MODNAME, cg);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
dev_warn(&pdev->dev, "request irq failed: %d\n", retval);
|
dev_warn(&pdev->dev, "request irq failed: %d\n", retval);
|
||||||
return retval;
|
return retval;
|
||||||
|
@ -381,24 +381,12 @@ static int crystalcove_gpio_probe(struct platform_device *pdev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int crystalcove_gpio_remove(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
struct crystalcove_gpio *cg = platform_get_drvdata(pdev);
|
|
||||||
int irq = platform_get_irq(pdev, 0);
|
|
||||||
|
|
||||||
if (irq >= 0)
|
|
||||||
free_irq(irq, cg);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct platform_driver crystalcove_gpio_driver = {
|
static struct platform_driver crystalcove_gpio_driver = {
|
||||||
.probe = crystalcove_gpio_probe,
|
.probe = crystalcove_gpio_probe,
|
||||||
.remove = crystalcove_gpio_remove,
|
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "crystal_cove_gpio",
|
.name = "crystal_cove_gpio",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
module_platform_driver(crystalcove_gpio_driver);
|
module_platform_driver(crystalcove_gpio_driver);
|
||||||
|
|
||||||
MODULE_AUTHOR("Yang, Bin <bin.yang@intel.com>");
|
MODULE_AUTHOR("Yang, Bin <bin.yang@intel.com>");
|
||||||
|
|
Loading…
Reference in New Issue