linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: pxa: balloon3: Fix build error
@ 2015-09-01  1:52 Axel Lin
  2015-09-02  6:17 ` Robert Jarzmik
  0 siblings, 1 reply; 2+ messages in thread
From: Axel Lin @ 2015-09-01  1:52 UTC (permalink / raw)
  To: linux-arm-kernel

irq_data_get_chip() function does not exist, call irq_desc_get_chip()
instead.

Fixes: 9ec97561aa6d ("ARM/pxa: Prepare balloon3_irq_handler for irq argument removal")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 arch/arm/mach-pxa/balloon3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-pxa/balloon3.c b/arch/arm/mach-pxa/balloon3.c
index 70366b3..c1cda98 100644
--- a/arch/arm/mach-pxa/balloon3.c
+++ b/arch/arm/mach-pxa/balloon3.c
@@ -502,7 +502,7 @@ static void balloon3_irq_handler(unsigned int __irq, struct irq_desc *desc)
 					balloon3_irq_enabled;
 	do {
 		struct irq_data *d = irq_desc_get_irq_data(desc);
-		struct irq_chip *chip = irq_data_get_chip(d);
+		struct irq_chip *chip = irq_desc_get_chip(desc);
 		unsigned int irq;
 
 		/* clear useless edge notification */
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH] ARM: pxa: balloon3: Fix build error
  2015-09-01  1:52 [PATCH] ARM: pxa: balloon3: Fix build error Axel Lin
@ 2015-09-02  6:17 ` Robert Jarzmik
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Jarzmik @ 2015-09-02  6:17 UTC (permalink / raw)
  To: linux-arm-kernel

Axel Lin <axel.lin@ingics.com> writes:

> irq_data_get_chip() function does not exist, call irq_desc_get_chip()
> instead.
>
> Fixes: 9ec97561aa6d ("ARM/pxa: Prepare balloon3_irq_handler for irq argument removal")
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
I'll take that through pxa/fixes, thanks.

Cheers.

--
Robert

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-02  6:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-01  1:52 [PATCH] ARM: pxa: balloon3: Fix build error Axel Lin
2015-09-02  6:17 ` Robert Jarzmik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).