Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

irqdomain: soc: Switch to irq_find_mapping()

irq_linear_revmap() is deprecated, so remove all its uses and supersede
them by an identical call to irq_find_mapping().

Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
Cc: Qiang Zhao <qiang.zhao@nxp.com>
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-arm-kernel@lists.infradead.org
Link: https://lore.kernel.org/r/20250319092951.37667-49-jirislaby@kernel.org
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>

authored by

Jiri Slaby (SUSE) and committed by
Christophe Leroy
a70a3a63 2014c95a

+2 -2
+2 -2
drivers/soc/fsl/qe/qe_ic.c
··· 344 344 if (irq == 0) 345 345 return 0; 346 346 347 - return irq_linear_revmap(qe_ic->irqhost, irq); 347 + return irq_find_mapping(qe_ic->irqhost, irq); 348 348 } 349 349 350 350 /* Return an interrupt vector or 0 if no interrupt is pending. */ ··· 360 360 if (irq == 0) 361 361 return 0; 362 362 363 - return irq_linear_revmap(qe_ic->irqhost, irq); 363 + return irq_find_mapping(qe_ic->irqhost, irq); 364 364 } 365 365 366 366 static void qe_ic_cascade_low(struct irq_desc *desc)