Commit 385877c0 authored by Axel Lin's avatar Axel Lin Committed by Robert Jarzmik

ARM: pxa: balloon3: Fix build error

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

Fixes: 9ec97561 ("ARM/pxa: Prepare balloon3_irq_handler for irq argument removal")
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
parent b692cb83
...@@ -502,7 +502,7 @@ static void balloon3_irq_handler(unsigned int __irq, struct irq_desc *desc) ...@@ -502,7 +502,7 @@ static void balloon3_irq_handler(unsigned int __irq, struct irq_desc *desc)
balloon3_irq_enabled; balloon3_irq_enabled;
do { do {
struct irq_data *d = irq_desc_get_irq_data(desc); 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; unsigned int irq;
/* clear useless edge notification */ /* clear useless edge notification */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment