Commit 3a1d0783 authored by Michał Mirosław's avatar Michał Mirosław Committed by Martin K. Petersen

scsi: sd: add missing KERN_CONT for disk spin-up

KERN_CONT is now required for continued printks(). Add it.
Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent cffe3ff3
......@@ -2170,7 +2170,7 @@ sd_spinup_disk(struct scsi_disk *sdkp)
}
/* Wait 1 second for next try */
msleep(1000);
printk(".");
printk(KERN_CONT ".");
/*
* Wait for USB flash devices with slow firmware.
......@@ -2200,9 +2200,9 @@ sd_spinup_disk(struct scsi_disk *sdkp)
if (spintime) {
if (scsi_status_is_good(the_result))
printk("ready\n");
printk(KERN_CONT "ready\n");
else
printk("not responding...\n");
printk(KERN_CONT "not responding...\n");
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment