[PATCH] arch/arm/kernel/ecard.c: use KERN_* From: Christophe Lucas Signed-off-by: Christophe Lucas Signed-off-by: Alexey Dobriyan Index: linux-kj/arch/arm/kernel/ecard.c =================================================================== --- linux-kj.orig/arch/arm/kernel/ecard.c 2006-01-18 16:44:03.000000000 +0300 +++ linux-kj/arch/arm/kernel/ecard.c 2006-01-18 16:47:08.000000000 +0300 @@ -510,13 +510,13 @@ static void ecard_dump_irq_state(void) { ecard_t *ec; - printk("Expansion card IRQ state:\n"); + printk(KERN_DEBUG "Expansion card IRQ state:\n"); for (ec = cards; ec; ec = ec->next) { if (ec->slot_no == 8) continue; - printk(" %d: %sclaimed, ", + printk(KERN_DEBUG " %d: %sclaimed, ", ec->slot_no, ec->claimed ? "" : "not "); if (ec->ops && ec->ops->irqpending && @@ -1079,7 +1079,7 @@ static int __init ecard_init(void) return ret; } - printk("Probing expansion cards\n"); + printk(KERN_INFO "Probing expansion cards\n"); for (slot = 0; slot < 8; slot ++) { if (ecard_probe(slot, ECARD_EASI) == -ENODEV)