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

yexingchen116@gmail.com posted 1 patch 3 years, 5 months ago
There is a newer version of this series
drivers/soc/dove/pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH linux-next v2] soc: dove: Use generic_handle_domain_irq()
Posted by yexingchen116@gmail.com 3 years, 5 months ago
From: ye xingchen <ye.xingchen@zte.com.cn>

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

Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
---
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
Re: [PATCH linux-next v2] soc: dove: Use generic_handle_domain_irq()
Posted by Andrew Lunn 3 years, 5 months ago
On Wed, Oct 12, 2022 at 01:05:22AM +0000, yexingchen116@gmail.com wrote:
> From: ye xingchen <ye.xingchen@zte.com.cn>
> 
> 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