diff options
author | Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com> | 2008-04-25 09:24:59 -0400 |
---|---|---|
committer | Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com> | 2008-04-25 09:45:09 -0400 |
commit | 21f20b69a567ca8971fe643d2ebe5d680c9b43af (patch) | |
tree | d779a09262986e1e9b4def6f487346289dc27a2d /arch/arm/mach-ns9xxx/irq.c | |
parent | a57a0b1d0f66da5ff5dc8f1a5a999f4d2f66090a (diff) |
ns9xxx: fix sparse warning
The actual warning is
arch/arm/mach-ns9xxx/irq.c:65:6: warning: symbol 'handle_prio_irq' was not declared. Should it be static?
Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
Diffstat (limited to 'arch/arm/mach-ns9xxx/irq.c')
-rw-r--r-- | arch/arm/mach-ns9xxx/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ns9xxx/irq.c b/arch/arm/mach-ns9xxx/irq.c index 75f2070dec7b..bfd906be754e 100644 --- a/arch/arm/mach-ns9xxx/irq.c +++ b/arch/arm/mach-ns9xxx/irq.c | |||
@@ -56,7 +56,7 @@ static struct irq_chip ns9xxx_chip = { | |||
56 | #if 0 | 56 | #if 0 |
57 | #define handle_irq handle_level_irq | 57 | #define handle_irq handle_level_irq |
58 | #else | 58 | #else |
59 | void handle_prio_irq(unsigned int irq, struct irq_desc *desc) | 59 | static void handle_prio_irq(unsigned int irq, struct irq_desc *desc) |
60 | { | 60 | { |
61 | unsigned int cpu = smp_processor_id(); | 61 | unsigned int cpu = smp_processor_id(); |
62 | struct irqaction *action; | 62 | struct irqaction *action; |