[PATCH] Disable a.out for AMD64
[linux-2.6/history.git] / include / asm-s390 / irq.h
blob36027232a8205763766ffe3a33795ee6af8445ff
1 #ifndef _ASM_IRQ_H
2 #define _ASM_IRQ_H
4 #ifdef __KERNEL__
5 #include <asm/hardirq.h>
7 /*
8 * the definition of irqs has changed in 2.5.46:
9 * NR_IRQS is no longer the number of i/o
10 * interrupts (65536), but rather the number
11 * of interrupt classes (6).
14 enum interruption_class {
15 EXTERNAL_INTERRUPT,
16 IO_INTERRUPT,
17 MACHINE_CHECK_INTERRUPT,
18 PROGRAM_INTERRUPT,
19 RESTART_INTERRUPT,
20 SUPERVISOR_CALL,
22 NR_IRQS,
25 #define touch_nmi_watchdog() do { } while(0)
27 #endif /* __KERNEL__ */
28 #endif