diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2014-03-19 11:19:52 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-03-19 11:28:14 +0100 |
commit | d532676cc7329e1088702ccb0015942cc370b954 (patch) | |
tree | f6fdc84d0feb154547e769292631ec307a146ad4 /kernel/softirq.c | |
parent | 14b4319a44f2e0385e1794bf41a07d872908b539 (diff) | |
download | linux-d532676cc7329e1088702ccb0015942cc370b954.tar.gz linux-d532676cc7329e1088702ccb0015942cc370b954.tar.bz2 linux-d532676cc7329e1088702ccb0015942cc370b954.zip |
softirq: Add linux/irq.h to make it compile again
On Sparc and S390 the removal of irq.h from kernel_stat.h causes:
kernel/softirq.c:774:9: error: 'NR_IRQS_LEGACY' undeclared
Reported-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/softirq.c')
-rw-r--r-- | kernel/softirq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index 490fcbb1dc5b..b50990a5bea0 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -25,6 +25,7 @@ #include <linux/smp.h> #include <linux/smpboot.h> #include <linux/tick.h> +#include <linux/irq.h> #define CREATE_TRACE_POINTS #include <trace/events/irq.h> |