diff options
Diffstat (limited to 'arch/mips/bcm63xx/irq.c')
-rw-r--r-- | arch/mips/bcm63xx/irq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/bcm63xx/irq.c b/arch/mips/bcm63xx/irq.c index 30c6803b5403..a9fb564b194c 100644 --- a/arch/mips/bcm63xx/irq.c +++ b/arch/mips/bcm63xx/irq.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <bcm63xx_io.h> | 19 | #include <bcm63xx_io.h> |
20 | #include <bcm63xx_irq.h> | 20 | #include <bcm63xx_irq.h> |
21 | 21 | ||
22 | static void __dispatch_internal(void) __maybe_unused; | 22 | static void __dispatch_internal_32(void) __maybe_unused; |
23 | static void __dispatch_internal_64(void) __maybe_unused; | 23 | static void __dispatch_internal_64(void) __maybe_unused; |
24 | static void __internal_irq_mask_32(unsigned int irq) __maybe_unused; | 24 | static void __internal_irq_mask_32(unsigned int irq) __maybe_unused; |
25 | static void __internal_irq_mask_64(unsigned int irq) __maybe_unused; | 25 | static void __internal_irq_mask_64(unsigned int irq) __maybe_unused; |
@@ -117,7 +117,7 @@ static void bcm63xx_init_irq(void) | |||
117 | } | 117 | } |
118 | 118 | ||
119 | if (irq_bits == 32) { | 119 | if (irq_bits == 32) { |
120 | dispatch_internal = __dispatch_internal; | 120 | dispatch_internal = __dispatch_internal_32; |
121 | internal_irq_mask = __internal_irq_mask_32; | 121 | internal_irq_mask = __internal_irq_mask_32; |
122 | internal_irq_unmask = __internal_irq_unmask_32; | 122 | internal_irq_unmask = __internal_irq_unmask_32; |
123 | } else { | 123 | } else { |
@@ -149,7 +149,7 @@ static inline void handle_internal(int intbit) | |||
149 | * will resume the loop where it ended the last time we left this | 149 | * will resume the loop where it ended the last time we left this |
150 | * function. | 150 | * function. |
151 | */ | 151 | */ |
152 | static void __dispatch_internal(void) | 152 | static void __dispatch_internal_32(void) |
153 | { | 153 | { |
154 | u32 pending; | 154 | u32 pending; |
155 | static int i; | 155 | static int i; |