mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 07:34:06 +08:00
ARM: pxa: balloon3: Fix build error
irq_data_get_chip() function does not exist, call irq_desc_get_chip()
instead.
Fixes: 9ec97561aa
("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>
This commit is contained in:
parent
b692cb83b1
commit
385877c013
@ -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 */
|
||||||
|
Loading…
Reference in New Issue
Block a user