patch-2.4.22 linux-2.4.22/arch/ia64/kernel/irq.c
Next file: linux-2.4.22/arch/ia64/kernel/irq_ia64.c
Previous file: linux-2.4.22/arch/ia64/kernel/iosapic.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
2003-08-25 04:44:39.000000000 -0700
- Orig file:
linux-2.4.21/arch/ia64/kernel/irq.c
- Orig date:
2003-06-13 07:51:29.000000000 -0700
diff -urN linux-2.4.21/arch/ia64/kernel/irq.c linux-2.4.22/arch/ia64/kernel/irq.c
@@ -111,7 +111,7 @@
* a generic callback i think.
*/
#if CONFIG_X86
- printk("unexpected IRQ trap at vector %02x\n", irq);
+ printk(KERN_ERR "unexpected IRQ trap at vector %02x\n", irq);
#ifdef CONFIG_X86_LOCAL_APIC
/*
* Currently unexpected vectors happen only on SMP and APIC.
@@ -125,7 +125,7 @@
#endif
#endif
#if CONFIG_IA64
- printk("Unexpected irq vector 0x%x on CPU %u!\n", irq, smp_processor_id());
+ printk(KERN_ERR "Unexpected irq vector 0x%x on CPU %u!\n", irq, smp_processor_id());
#endif
}
@@ -591,7 +591,7 @@
desc->depth--;
break;
case 0:
- printk("enable_irq(%u) unbalanced from %p\n",
+ printk(KERN_ERR "enable_irq(%u) unbalanced from %p\n",
irq, (void *) __builtin_return_address(0));
}
spin_unlock_irqrestore(&desc->lock, flags);
@@ -738,7 +738,7 @@
*/
if (irqflags & SA_SHIRQ) {
if (!dev_id)
- printk("Bad boy: %s called us without a dev_id!\n", devname);
+ printk(KERN_ERR "Bad boy: %s called us without a dev_id!\n", devname);
}
#endif
@@ -819,7 +819,7 @@
kfree(action);
return;
}
- printk("Trying to free free IRQ%d\n",irq);
+ printk(KERN_ERR "Trying to free free IRQ%d\n",irq);
spin_unlock_irqrestore(&desc->lock,flags);
return;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)