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

[ARM] Fix fallout from IRQ regs changes

Some ARM platforms were still broken as a result of the IRQ register
passing changes, mostly due to a missing linux/irq.h include.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by

Russell King and committed by
Russell King
2326eb98 8e25b84e

+4 -2
+1
arch/arm/mach-footbridge/dc21285.c
··· 16 16 #include <linux/slab.h> 17 17 #include <linux/init.h> 18 18 #include <linux/ioport.h> 19 + #include <linux/irq.h> 19 20 20 21 #include <asm/io.h> 21 22 #include <asm/irq.h>
+1 -1
arch/arm/mach-pxa/lubbock.c
··· 397 397 if (LUB_IRQ_SET_CLR & (1 << 0)) 398 398 mod_timer(&mmc_timer, jiffies + MMC_POLL_RATE); 399 399 else { 400 - (void) mmc_detect_int(LUBBOCK_SD_IRQ, (void *)data, NULL); 400 + (void) mmc_detect_int(LUBBOCK_SD_IRQ, (void *)data); 401 401 enable_irq(LUBBOCK_SD_IRQ); 402 402 } 403 403 }
+2 -1
arch/arm/oprofile/op_model_xscale.c
··· 20 20 #include <linux/sched.h> 21 21 #include <linux/oprofile.h> 22 22 #include <linux/interrupt.h> 23 - #include <asm/irq.h> 23 + #include <linux/irq.h> 24 + 24 25 #include <asm/system.h> 25 26 26 27 #include "op_counter.h"