2022-10-12 01:09:45

by ye xingchen

[permalink] [raw]
Subject: [PATCH linux-next v2] soc: dove: Use generic_handle_domain_irq()

From: ye xingchen <[email protected]>

Replace generic_handle_irq(irq_find_mapping()) with
generic_handle_domain_irq().

Signed-off-by: ye xingchen <[email protected]>
---
v1 -> v2
Make the subject line more specific.
drivers/soc/dove/pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/soc/dove/pmu.c b/drivers/soc/dove/pmu.c
index ffc5311c0ed8..308fe45231b4 100644
--- a/drivers/soc/dove/pmu.c
+++ b/drivers/soc/dove/pmu.c
@@ -243,7 +243,7 @@ static void pmu_irq_handler(struct irq_desc *desc)
stat &= ~(1 << hwirq);
done &= ~(1 << hwirq);

- generic_handle_irq(irq_find_mapping(domain, hwirq));
+ generic_handle_domain_irq(domain, hwirq);
}

/*
--
2.25.1


2022-10-12 12:55:46

by Andrew Lunn

[permalink] [raw]
Subject: Re: [PATCH linux-next v2] soc: dove: Use generic_handle_domain_irq()

On Wed, Oct 12, 2022 at 01:05:22AM +0000, [email protected] wrote:
> From: ye xingchen <[email protected]>
>
> Replace generic_handle_irq(irq_find_mapping()) with
> generic_handle_domain_irq().

Thanks for the improves subject line.

When reposting a patch, please add any Acked-by, or Reviewed-by you
received for previous versions. It is hard for a Maintainer to track
these things over multiple versions. And it is extra effort to add
them, slowing down the whole process of merging patches.

Andrew