diff mbox

[SCSI] ufs: fix a wrong string in power mode change

Message ID 003001d209a5$9afb9b00$d0f2d100$@samsung.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Kiwoong Kim Sept. 8, 2016, 7:50 a.m. UTC
From: Kiwoong Kim <kwmad.kim@samsung.com>

I modified a string as described in UFS spec as follow:
umpcrs -> upmcrs 

Signed-off-by: Kiwoong Kim <kwmad.kim@samsung.com>
---
 drivers/scsi/ufs/ufshcd.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Martin K. Petersen Sept. 9, 2016, 11:22 a.m. UTC | #1
>>>>> "Kiwoong" == Kiwoong Kim <kwmad.kim@samsung.com> writes:

Kiwoong> From: Kiwoong Kim <kwmad.kim@samsung.com> I modified a string
Kiwoong> as described in UFS spec as follow: umpcrs -> upmcrs

Applied to 4.9/scsi-queue by hand. Please make sure patches are against
the current scsi-queue tree.
diff mbox

Patch

diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index b0ade73..e8a706b 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -2268,7 +2268,7 @@  static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
        status = ufshcd_get_upmcrs(hba);
        if (status != PWR_LOCAL) {
                dev_err(hba->dev,
-                       "pwr ctrl cmd 0x%0x failed, host umpcrs:0x%x\n",
+                       "pwr ctrl cmd 0x%0x failed, host upmcrs:0x%x\n",
                        cmd->command, status);
                ret = (status != PWR_OK) ? status : -1;
        }