Skip to content

Commit

Permalink
[PARISC] Make redirecting irq messages less noisy
Browse files Browse the repository at this point in the history
Make the "redirecting irq" message to not display on the console by
setting the severity to KERN_DEBUG.  The console was basically unusable.

Signed-off-by: Ryan Bradetich <rbrad@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
  • Loading branch information
Ryan Bradetich authored and Kyle McMartin committed Nov 17, 2005
1 parent 03afe22 commit 75be99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/parisc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ void do_cpu_irq_mask(struct pt_regs *regs)
!cpu_isset(smp_processor_id(), dest)) {
int cpu = first_cpu(dest);

printk("redirecting irq %d from CPU %d to %d\n",
printk(KERN_DEBUG "redirecting irq %d from CPU %d to %d\n",
irq, smp_processor_id(), cpu);
gsc_writel(irq + CPU_IRQ_BASE,
cpu_data[cpu].hpa);
Expand Down

0 comments on commit 75be99a

Please sign in to comment.