irq.h (27eb2c4b3d3e13f376a359e293c212a2e9407af5) | irq.h (96f0e00378d4a1fc1b79933ef84e1595015de808) |
---|---|
1#ifndef __ASM_ARM_IRQ_H 2#define __ASM_ARM_IRQ_H 3 4#define NR_IRQS_LEGACY 16 5 6#ifndef CONFIG_SPARSE_IRQ 7#include <mach/irqs.h> 8#else --- 21 unchanged lines hidden (view full) --- 30void handle_IRQ(unsigned int, struct pt_regs *); 31void init_IRQ(void); 32 33#ifdef CONFIG_MULTI_IRQ_HANDLER 34extern void (*handle_arch_irq)(struct pt_regs *); 35extern void set_handle_irq(void (*handle_irq)(struct pt_regs *)); 36#endif 37 | 1#ifndef __ASM_ARM_IRQ_H 2#define __ASM_ARM_IRQ_H 3 4#define NR_IRQS_LEGACY 16 5 6#ifndef CONFIG_SPARSE_IRQ 7#include <mach/irqs.h> 8#else --- 21 unchanged lines hidden (view full) --- 30void handle_IRQ(unsigned int, struct pt_regs *); 31void init_IRQ(void); 32 33#ifdef CONFIG_MULTI_IRQ_HANDLER 34extern void (*handle_arch_irq)(struct pt_regs *); 35extern void set_handle_irq(void (*handle_irq)(struct pt_regs *)); 36#endif 37 |
38#ifdef CONFIG_SMP 39extern void arch_trigger_all_cpu_backtrace(bool); 40#define arch_trigger_all_cpu_backtrace(x) arch_trigger_all_cpu_backtrace(x) |
|
38#endif 39 40#endif 41 | 41#endif 42 43#endif 44 |
45#endif 46 |
|