diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-10-15 13:48:37 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-10-15 13:48:37 +0100 |
commit | 2326eb985b8844f44e150489c76f5cb56fa381b4 (patch) | |
tree | 889b626938d9fcbef623b006f5af87737b92e331 /arch/arm/oprofile | |
parent | 8e25b84e76a0b2c117218405818cadd591512ff8 (diff) | |
download | blackbird-obmc-linux-2326eb985b8844f44e150489c76f5cb56fa381b4.tar.gz blackbird-obmc-linux-2326eb985b8844f44e150489c76f5cb56fa381b4.zip |
[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>
Diffstat (limited to 'arch/arm/oprofile')
-rw-r--r-- | arch/arm/oprofile/op_model_xscale.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/oprofile/op_model_xscale.c b/arch/arm/oprofile/op_model_xscale.c index 7899d3ca75a3..7c3289c2acd7 100644 --- a/arch/arm/oprofile/op_model_xscale.c +++ b/arch/arm/oprofile/op_model_xscale.c @@ -20,7 +20,8 @@ #include <linux/sched.h> #include <linux/oprofile.h> #include <linux/interrupt.h> -#include <asm/irq.h> +#include <linux/irq.h> + #include <asm/system.h> #include "op_counter.h" |