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

Commit da7d7dd0 authored by Can Guo's avatar Can Guo Committed by Gerrit - the friendly Code Review server
Browse files

scsi: ufs: fix a minor coding typo



In function ufshcd_print_host_state, the prints of outstanding reqs and
tasks got reversed. This change fixs it.

Change-Id: I2c14c0d633fd076ca4f2222678c48312b564d866
Signed-off-by: default avatarCan Guo <cang@codeaurora.org>
parent 463d8c28
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -892,7 +892,7 @@ static void ufshcd_print_host_state(struct ufs_hba *hba)

	dev_err(hba->dev, "UFS Host state=%d\n", hba->ufshcd_state);
	dev_err(hba->dev, "lrb in use=0x%lx, outstanding reqs=0x%lx tasks=0x%lx\n",
		hba->lrb_in_use, hba->outstanding_tasks, hba->outstanding_reqs);
		hba->lrb_in_use, hba->outstanding_reqs, hba->outstanding_tasks);
	dev_err(hba->dev, "saved_err=0x%x, saved_uic_err=0x%x, saved_ce_err=0x%x\n",
		hba->saved_err, hba->saved_uic_err, hba->saved_ce_err);
	dev_err(hba->dev, "Device power mode=%d, UIC link state=%d\n",