[PATCH] Sun-3 NCR5380 SCSI printk tags

Geert Uytterhoeven (geert@linux-m68k.org)
Wed, 19 Mar 2003 13:29:37 +0100 (MET)


Sun-3 NCR5380 SCSI: Re-add accidentally deleted KERN_DEBUG tags.

--- linux-2.5.x/drivers/scsi/sun3_NCR5380.c Sat Oct 12 19:20:38 2002
+++ linux-m68k-2.5.x/drivers/scsi/sun3_NCR5380.c Mon Oct 7 22:21:40 2002
@@ -613,11 +617,11 @@

status = NCR5380_read(STATUS_REG);
if (!(status & SR_REQ))
- printk("scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
+ printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
else {
for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
(phases[i].value != (status & PHASE_MASK)); ++i);
- printk("scsi%d: phase %s\n", HOSTNO, phases[i].name);
+ printk(KERN_DEBUG "scsi%d: phase %s\n", HOSTNO, phases[i].name);
}
}

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/