diff options
Diffstat (limited to 'arch/m68k/mac/macints.c')
-rw-r--r-- | arch/m68k/mac/macints.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/m68k/mac/macints.c b/arch/m68k/mac/macints.c index ecddac4a02b9..82e560c076ce 100644 --- a/arch/m68k/mac/macints.c +++ b/arch/m68k/mac/macints.c | |||
@@ -127,7 +127,6 @@ | |||
127 | #include <asm/irq.h> | 127 | #include <asm/irq.h> |
128 | #include <asm/traps.h> | 128 | #include <asm/traps.h> |
129 | #include <asm/bootinfo.h> | 129 | #include <asm/bootinfo.h> |
130 | #include <asm/machw.h> | ||
131 | #include <asm/macintosh.h> | 130 | #include <asm/macintosh.h> |
132 | #include <asm/mac_via.h> | 131 | #include <asm/mac_via.h> |
133 | #include <asm/mac_psc.h> | 132 | #include <asm/mac_psc.h> |
@@ -215,8 +214,8 @@ irqreturn_t mac_debug_handler(int, void *); | |||
215 | 214 | ||
216 | /* #define DEBUG_MACINTS */ | 215 | /* #define DEBUG_MACINTS */ |
217 | 216 | ||
218 | static void mac_enable_irq(unsigned int irq); | 217 | void mac_enable_irq(unsigned int irq); |
219 | static void mac_disable_irq(unsigned int irq); | 218 | void mac_disable_irq(unsigned int irq); |
220 | 219 | ||
221 | static struct irq_controller mac_irq_controller = { | 220 | static struct irq_controller mac_irq_controller = { |
222 | .name = "mac", | 221 | .name = "mac", |
@@ -275,7 +274,7 @@ void __init mac_init_IRQ(void) | |||
275 | * These routines are just dispatchers to the VIA/OSS/PSC routines. | 274 | * These routines are just dispatchers to the VIA/OSS/PSC routines. |
276 | */ | 275 | */ |
277 | 276 | ||
278 | static void mac_enable_irq(unsigned int irq) | 277 | void mac_enable_irq(unsigned int irq) |
279 | { | 278 | { |
280 | int irq_src = IRQ_SRC(irq); | 279 | int irq_src = IRQ_SRC(irq); |
281 | 280 | ||
@@ -308,7 +307,7 @@ static void mac_enable_irq(unsigned int irq) | |||
308 | } | 307 | } |
309 | } | 308 | } |
310 | 309 | ||
311 | static void mac_disable_irq(unsigned int irq) | 310 | void mac_disable_irq(unsigned int irq) |
312 | { | 311 | { |
313 | int irq_src = IRQ_SRC(irq); | 312 | int irq_src = IRQ_SRC(irq); |
314 | 313 | ||