On Mon, Apr 02, 2007 at 04:20:22PM -0500, brking@xxxxxxxxxxxxxxxxxx wrote: > if (sdev->inquiry_len < 36) { > - printk(KERN_INFO "scsi scan: INQUIRY result too short (%d)," > - " using 36\n", sdev->inquiry_len); > + SCSI_LOG_SCAN_BUS(1, printk(KERN_INFO "scsi scan: INQUIRY result too" > + " short (%d), using 36\n", sdev->inquiry_len)); > sdev->inquiry_len = 36; The wrapping's a bit awkward. How about: + SCSI_LOG_SCAN_BUS(1, printk(KERN_INFO "scsi scan: INQUIRY " + "result too short (%d), using 36\n", + sdev->inquiry_len); - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html