Skip to content

Commit

Permalink
ARM: pxa: balloon3: Fix build error
Browse files Browse the repository at this point in the history
irq_data_get_chip() function does not exist, call irq_desc_get_chip()
instead.

Fixes: 9ec9756 ("ARM/pxa: Prepare balloon3_irq_handler for irq argument removal")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
  • Loading branch information
Axel Lin authored and Robert Jarzmik committed Sep 16, 2015
1 parent b692cb8 commit 385877c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/balloon3.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 385877c

Please sign in to comment.