diff options
Diffstat (limited to 'arch/mips/sgi-ip27/ip27-irq.c')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-irq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/sgi-ip27/ip27-irq.c b/arch/mips/sgi-ip27/ip27-irq.c index f90dce315e04..23642238c689 100644 --- a/arch/mips/sgi-ip27/ip27-irq.c +++ b/arch/mips/sgi-ip27/ip27-irq.c | |||
@@ -73,7 +73,7 @@ static inline int alloc_level(int cpu, int irq) | |||
73 | 73 | ||
74 | level = find_first_zero_bit(hub->irq_alloc_mask, LEVELS_PER_SLICE); | 74 | level = find_first_zero_bit(hub->irq_alloc_mask, LEVELS_PER_SLICE); |
75 | if (level >= LEVELS_PER_SLICE) | 75 | if (level >= LEVELS_PER_SLICE) |
76 | panic("Cpu %d flooded with devices\n", cpu); | 76 | panic("Cpu %d flooded with devices", cpu); |
77 | 77 | ||
78 | __set_bit(level, hub->irq_alloc_mask); | 78 | __set_bit(level, hub->irq_alloc_mask); |
79 | si->level_to_irq[level] = irq; | 79 | si->level_to_irq[level] = irq; |
@@ -96,7 +96,7 @@ static inline int find_level(cpuid_t *cpunum, int irq) | |||
96 | } | 96 | } |
97 | } | 97 | } |
98 | 98 | ||
99 | panic("Could not identify cpu/level for irq %d\n", irq); | 99 | panic("Could not identify cpu/level for irq %d", irq); |
100 | } | 100 | } |
101 | 101 | ||
102 | /* | 102 | /* |
@@ -116,7 +116,7 @@ static int ms1bit(unsigned long x) | |||
116 | } | 116 | } |
117 | 117 | ||
118 | /* | 118 | /* |
119 | * This code is unnecessarily complex, because we do IRQF_DISABLED | 119 | * This code is unnecessarily complex, because we do |
120 | * intr enabling. Basically, once we grab the set of intrs we need | 120 | * intr enabling. Basically, once we grab the set of intrs we need |
121 | * to service, we must mask _all_ these interrupts; firstly, to make | 121 | * to service, we must mask _all_ these interrupts; firstly, to make |
122 | * sure the same intr does not intr again, causing recursion that | 122 | * sure the same intr does not intr again, causing recursion that |