diff options
| -rw-r--r-- | arch/m68knommu/kernel/asm-offsets.c | 1 | ||||
| -rw-r--r-- | arch/m68knommu/platform/5307/ints.c | 1 | ||||
| -rw-r--r-- | include/asm-m68knommu/irq.h | 31 | ||||
| -rw-r--r-- | include/asm-m68knommu/irqnode.h | 36 |
4 files changed, 38 insertions, 31 deletions
diff --git a/arch/m68knommu/kernel/asm-offsets.c b/arch/m68knommu/kernel/asm-offsets.c index cd3ffe12653e..b988c7bdc6e4 100644 --- a/arch/m68knommu/kernel/asm-offsets.c +++ b/arch/m68knommu/kernel/asm-offsets.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/hardirq.h> | 15 | #include <linux/hardirq.h> |
| 16 | #include <asm/bootinfo.h> | 16 | #include <asm/bootinfo.h> |
| 17 | #include <asm/irq.h> | 17 | #include <asm/irq.h> |
| 18 | #include <asm/irqnode.h> | ||
| 18 | #include <asm/thread_info.h> | 19 | #include <asm/thread_info.h> |
| 19 | 20 | ||
| 20 | #define DEFINE(sym, val) \ | 21 | #define DEFINE(sym, val) \ |
diff --git a/arch/m68knommu/platform/5307/ints.c b/arch/m68knommu/platform/5307/ints.c index 0117754d44f3..a134fb2f0566 100644 --- a/arch/m68knommu/platform/5307/ints.c +++ b/arch/m68knommu/platform/5307/ints.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | 26 | ||
| 27 | #include <asm/system.h> | 27 | #include <asm/system.h> |
| 28 | #include <asm/irq.h> | 28 | #include <asm/irq.h> |
| 29 | #include <asm/irqnode.h> | ||
| 29 | #include <asm/traps.h> | 30 | #include <asm/traps.h> |
| 30 | #include <asm/page.h> | 31 | #include <asm/page.h> |
| 31 | #include <asm/machdep.h> | 32 | #include <asm/machdep.h> |
diff --git a/include/asm-m68knommu/irq.h b/include/asm-m68knommu/irq.h index 208ccd969e4b..a08fa9b958da 100644 --- a/include/asm-m68knommu/irq.h +++ b/include/asm-m68knommu/irq.h | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | #define _M68K_IRQ_H_ | 2 | #define _M68K_IRQ_H_ |
| 3 | 3 | ||
| 4 | #include <linux/config.h> | 4 | #include <linux/config.h> |
| 5 | #include <linux/interrupt.h> | ||
| 6 | #include <asm/ptrace.h> | 5 | #include <asm/ptrace.h> |
| 7 | 6 | ||
| 8 | #ifdef CONFIG_COLDFIRE | 7 | #ifdef CONFIG_COLDFIRE |
| @@ -83,36 +82,6 @@ extern void (*mach_disable_irq)(unsigned int); | |||
| 83 | #endif /* CONFIG_M68360 */ | 82 | #endif /* CONFIG_M68360 */ |
| 84 | 83 | ||
| 85 | /* | 84 | /* |
| 86 | * This structure is used to chain together the ISRs for a particular | ||
| 87 | * interrupt source (if it supports chaining). | ||
| 88 | */ | ||
| 89 | typedef struct irq_node { | ||
| 90 | irqreturn_t (*handler)(int, void *, struct pt_regs *); | ||
| 91 | unsigned long flags; | ||
| 92 | void *dev_id; | ||
| 93 | const char *devname; | ||
| 94 | struct irq_node *next; | ||
| 95 | } irq_node_t; | ||
| 96 | |||
| 97 | /* | ||
| 98 | * This structure has only 4 elements for speed reasons | ||
| 99 | */ | ||
| 100 | typedef struct irq_handler { | ||
| 101 | irqreturn_t (*handler)(int, void *, struct pt_regs *); | ||
| 102 | unsigned long flags; | ||
| 103 | void *dev_id; | ||
| 104 | const char *devname; | ||
| 105 | } irq_handler_t; | ||
| 106 | |||
| 107 | /* count of spurious interrupts */ | ||
| 108 | extern volatile unsigned int num_spurious; | ||
| 109 | |||
| 110 | /* | ||
| 111 | * This function returns a new irq_node_t | ||
| 112 | */ | ||
| 113 | extern irq_node_t *new_irq_node(void); | ||
| 114 | |||
| 115 | /* | ||
| 116 | * Some drivers want these entry points | 85 | * Some drivers want these entry points |
| 117 | */ | 86 | */ |
| 118 | #define enable_irq(x) (mach_enable_irq ? (*mach_enable_irq)(x) : 0) | 87 | #define enable_irq(x) (mach_enable_irq ? (*mach_enable_irq)(x) : 0) |
diff --git a/include/asm-m68knommu/irqnode.h b/include/asm-m68knommu/irqnode.h new file mode 100644 index 000000000000..a2503dfc554c --- /dev/null +++ b/include/asm-m68knommu/irqnode.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | #ifndef _M68K_IRQNODE_H_ | ||
| 2 | #define _M68K_IRQNODE_H_ | ||
| 3 | |||
| 4 | #include <linux/interrupt.h> | ||
| 5 | |||
| 6 | /* | ||
| 7 | * This structure is used to chain together the ISRs for a particular | ||
| 8 | * interrupt source (if it supports chaining). | ||
| 9 | */ | ||
| 10 | typedef struct irq_node { | ||
| 11 | irqreturn_t (*handler)(int, void *, struct pt_regs *); | ||
| 12 | unsigned long flags; | ||
| 13 | void *dev_id; | ||
| 14 | const char *devname; | ||
| 15 | struct irq_node *next; | ||
| 16 | } irq_node_t; | ||
| 17 | |||
| 18 | /* | ||
| 19 | * This structure has only 4 elements for speed reasons | ||
| 20 | */ | ||
| 21 | typedef struct irq_handler { | ||
| 22 | irqreturn_t (*handler)(int, void *, struct pt_regs *); | ||
| 23 | unsigned long flags; | ||
| 24 | void *dev_id; | ||
| 25 | const char *devname; | ||
| 26 | } irq_handler_t; | ||
| 27 | |||
| 28 | /* count of spurious interrupts */ | ||
| 29 | extern volatile unsigned int num_spurious; | ||
| 30 | |||
| 31 | /* | ||
| 32 | * This function returns a new irq_node_t | ||
| 33 | */ | ||
| 34 | extern irq_node_t *new_irq_node(void); | ||
| 35 | |||
| 36 | #endif /* _M68K_IRQNODE_H_ */ | ||
