mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
gpio: omap: Move PM device over to irq domain
Move the reference to the device over to the irq domain. Signed-off-by: Marc Zyngier <maz@kernel.org> Tested-by: Tony Lindgren <tony@atomide.com> Acked-by: Bartosz Golaszewski <brgl@bgdev.pl> Link: https://lore.kernel.org/r/20220201120310.878267-8-maz@kernel.org
This commit is contained in:
parent
4b9558f920
commit
989c78f25a
1 changed files with 4 additions and 3 deletions
|
@ -986,7 +986,8 @@ static void omap_gpio_mod_init(struct gpio_bank *bank)
|
||||||
writel_relaxed(0, base + bank->regs->ctrl);
|
writel_relaxed(0, base + bank->regs->ctrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
|
static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc,
|
||||||
|
struct device *pm_dev)
|
||||||
{
|
{
|
||||||
struct gpio_irq_chip *irq;
|
struct gpio_irq_chip *irq;
|
||||||
static int gpio;
|
static int gpio;
|
||||||
|
@ -1052,6 +1053,7 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
|
||||||
if (ret)
|
if (ret)
|
||||||
return dev_err_probe(bank->chip.parent, ret, "Could not register gpio chip\n");
|
return dev_err_probe(bank->chip.parent, ret, "Could not register gpio chip\n");
|
||||||
|
|
||||||
|
irq_domain_set_pm_device(bank->chip.irq.domain, pm_dev);
|
||||||
ret = devm_request_irq(bank->chip.parent, bank->irq,
|
ret = devm_request_irq(bank->chip.parent, bank->irq,
|
||||||
omap_gpio_irq_handler,
|
omap_gpio_irq_handler,
|
||||||
0, dev_name(bank->chip.parent), bank);
|
0, dev_name(bank->chip.parent), bank);
|
||||||
|
@ -1402,7 +1404,6 @@ static int omap_gpio_probe(struct platform_device *pdev)
|
||||||
irqc->irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
|
irqc->irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
|
||||||
irqc->name = dev_name(&pdev->dev);
|
irqc->name = dev_name(&pdev->dev);
|
||||||
irqc->flags = IRQCHIP_MASK_ON_SUSPEND;
|
irqc->flags = IRQCHIP_MASK_ON_SUSPEND;
|
||||||
irqc->parent_device = dev;
|
|
||||||
|
|
||||||
bank->irq = platform_get_irq(pdev, 0);
|
bank->irq = platform_get_irq(pdev, 0);
|
||||||
if (bank->irq <= 0) {
|
if (bank->irq <= 0) {
|
||||||
|
@ -1466,7 +1467,7 @@ static int omap_gpio_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
omap_gpio_mod_init(bank);
|
omap_gpio_mod_init(bank);
|
||||||
|
|
||||||
ret = omap_gpio_chip_init(bank, irqc);
|
ret = omap_gpio_chip_init(bank, irqc, dev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pm_runtime_put_sync(dev);
|
pm_runtime_put_sync(dev);
|
||||||
pm_runtime_disable(dev);
|
pm_runtime_disable(dev);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue