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

Commit 175b30d8 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "scsi: sd: reduce log level for suspend/resume log messages"

parents f49e3d13 d0e612da
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3130,14 +3130,14 @@ static int sd_suspend(struct device *dev)
		return 0;	/* this can happen */

	if (sdkp->WCE) {
		sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
		sd_printk(KERN_DEBUG, sdkp, "Synchronizing SCSI cache\n");
		ret = sd_sync_cache(sdkp);
		if (ret)
			goto done;
	}

	if (sdkp->device->manage_start_stop) {
		sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
		sd_printk(KERN_DEBUG, sdkp, "Stopping disk\n");
		ret = sd_start_stop_device(sdkp, 0);
	}

@@ -3154,7 +3154,7 @@ static int sd_resume(struct device *dev)
	if (!sdkp->device->manage_start_stop)
		goto done;

	sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
	sd_printk(KERN_DEBUG, sdkp, "Starting disk\n");
	ret = sd_start_stop_device(sdkp, 1);

done: