Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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");
	}
}