Commit 859ed37c authored by ChanWoo Lee's avatar ChanWoo Lee Committed by Martin K. Petersen

scsi: ufs: core: Separate function name and message

Separate the function name and message to make it easier to check the log.
Modify messages to fit the format of others.
Signed-off-by: default avatarChanWoo Lee <cw9316.lee@samsung.com>
Link: https://lore.kernel.org/r/20221111062126.7307-1-cw9316.lee@samsung.comSigned-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent fda34a5d
...@@ -4480,7 +4480,7 @@ static int ufshcd_complete_dev_init(struct ufs_hba *hba) ...@@ -4480,7 +4480,7 @@ static int ufshcd_complete_dev_init(struct ufs_hba *hba)
QUERY_FLAG_IDN_FDEVICEINIT, 0, NULL); QUERY_FLAG_IDN_FDEVICEINIT, 0, NULL);
if (err) { if (err) {
dev_err(hba->dev, dev_err(hba->dev,
"%s setting fDeviceInit flag failed with error %d\n", "%s: setting fDeviceInit flag failed with error %d\n",
__func__, err); __func__, err);
goto out; goto out;
} }
...@@ -4497,11 +4497,11 @@ static int ufshcd_complete_dev_init(struct ufs_hba *hba) ...@@ -4497,11 +4497,11 @@ static int ufshcd_complete_dev_init(struct ufs_hba *hba)
if (err) { if (err) {
dev_err(hba->dev, dev_err(hba->dev,
"%s reading fDeviceInit flag failed with error %d\n", "%s: reading fDeviceInit flag failed with error %d\n",
__func__, err); __func__, err);
} else if (flag_res) { } else if (flag_res) {
dev_err(hba->dev, dev_err(hba->dev,
"%s fDeviceInit was not cleared by the device\n", "%s: fDeviceInit was not cleared by the device\n",
__func__); __func__);
err = -EBUSY; err = -EBUSY;
} }
......
...@@ -2289,7 +2289,7 @@ static bool ufshpb_check_hpb_reset_query(struct ufs_hba *hba) ...@@ -2289,7 +2289,7 @@ static bool ufshpb_check_hpb_reset_query(struct ufs_hba *hba)
/* wait for the device to complete HPB reset query */ /* wait for the device to complete HPB reset query */
for (try = 0; try < HPB_RESET_REQ_RETRIES; try++) { for (try = 0; try < HPB_RESET_REQ_RETRIES; try++) {
dev_dbg(hba->dev, dev_dbg(hba->dev,
"%s start flag reset polling %d times\n", "%s: start flag reset polling %d times\n",
__func__, try); __func__, try);
/* Poll fHpbReset flag to be cleared */ /* Poll fHpbReset flag to be cleared */
...@@ -2298,7 +2298,7 @@ static bool ufshpb_check_hpb_reset_query(struct ufs_hba *hba) ...@@ -2298,7 +2298,7 @@ static bool ufshpb_check_hpb_reset_query(struct ufs_hba *hba)
if (err) { if (err) {
dev_err(hba->dev, dev_err(hba->dev,
"%s reading fHpbReset flag failed with error %d\n", "%s: reading fHpbReset flag failed with error %d\n",
__func__, err); __func__, err);
return flag_res; return flag_res;
} }
...@@ -2310,7 +2310,7 @@ static bool ufshpb_check_hpb_reset_query(struct ufs_hba *hba) ...@@ -2310,7 +2310,7 @@ static bool ufshpb_check_hpb_reset_query(struct ufs_hba *hba)
} }
if (flag_res) { if (flag_res) {
dev_err(hba->dev, dev_err(hba->dev,
"%s fHpbReset was not cleared by the device\n", "%s: fHpbReset was not cleared by the device\n",
__func__); __func__);
} }
out: out:
......
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