scsi: ufs: Remove dev_err for information prints

dev_err is used for information prints.
Changed them to dev_info and dev_dbg.

Bug 4736849

Signed-off-by: Mallikarjun Kasoju <mkasoju@nvidia.com>
Change-Id: I990edef75566ca718fab611b36385f6ec5f12c44
This commit is contained in:
Mallikarjun Kasoju
2024-07-11 10:54:49 +00:00
committed by Jon Hunter
parent c3d33b827c
commit 14d246d8a3

View File

@@ -162,7 +162,7 @@ static int ufs_tegra_mphy_receiver_calibration(struct ufs_tegra_host *ufs_tegra,
MPHY_RX_APB_VENDOR2_0_RX_CAL_EN, mphy_rx_vendor2_reg); MPHY_RX_APB_VENDOR2_0_RX_CAL_EN, mphy_rx_vendor2_reg);
if (ufs_tegra->x2config == true) { if (ufs_tegra->x2config == true) {
dev_err(dev, "%s:x2config is true so invoking mphy_update\n", dev_dbg(dev, "%s:x2config is true so invoking mphy_update\n",
__func__); __func__);
mphy_update(ufs_tegra->mphy_l1_base, mphy_update(ufs_tegra->mphy_l1_base,
MPHY_RX_APB_VENDOR2_0_RX_CAL_EN, MPHY_RX_APB_VENDOR2_0_RX_CAL_EN,
@@ -192,7 +192,7 @@ static int ufs_tegra_mphy_receiver_calibration(struct ufs_tegra_host *ufs_tegra,
mphy_rx_vendor2_reg); mphy_rx_vendor2_reg);
if ((mphy_rx_vendor2 & MPHY_RX_APB_VENDOR2_0_RX_CAL_DONE) != 0U) { if ((mphy_rx_vendor2 & MPHY_RX_APB_VENDOR2_0_RX_CAL_DONE) != 0U) {
dev_err(dev, "%s: MPhy Receiver Calibration passed\n", __func__); dev_dbg(dev, "%s: MPhy Receiver Calibration passed\n", __func__);
break; break;
} else { } else {
udelay(1); udelay(1);
@@ -219,7 +219,7 @@ static int ufs_tegra_mphy_receiver_calibration(struct ufs_tegra_host *ufs_tegra,
mphy_rx_vendor2_reg); mphy_rx_vendor2_reg);
if ((mphy_rx_vendor2 & MPHY_RX_APB_VENDOR2_0_RX_CAL_DONE) == 0U) { if ((mphy_rx_vendor2 & MPHY_RX_APB_VENDOR2_0_RX_CAL_DONE) == 0U) {
dev_err(dev, "%s: MPhy Receiver Calibration passed\n", __func__); dev_dbg(dev, "%s: MPhy Receiver Calibration passed\n", __func__);
break; break;
} else { } else {
udelay(1); udelay(1);
@@ -238,7 +238,7 @@ static int ufs_tegra_mphy_receiver_calibration(struct ufs_tegra_host *ufs_tegra,
mphy_rx_vendor2_reg); mphy_rx_vendor2_reg);
if ((mphy_rx_vendor2 & MPHY_RX_APB_VENDOR2_0_RX_CAL_DONE) != 0U) { if ((mphy_rx_vendor2 & MPHY_RX_APB_VENDOR2_0_RX_CAL_DONE) != 0U) {
dev_err(dev, "%s: MPhy Receiver Calibration passed\n", __func__); dev_info(dev, "%s: MPhy Receiver Calibration passed\n", __func__);
break; break;
} else { } else {
udelay(1); udelay(1);
@@ -362,7 +362,7 @@ static int ufs_tegra_mphy_tx_calibration_status(struct ufs_tegra_host *ufs_tegra
MPHY_TX_APB_TX_VENDOR2_0_T264); MPHY_TX_APB_TX_VENDOR2_0_T264);
if ((mphy_tx_vendor2 & MPHY_TX_APB_VENDOR2_0_TX_CAL_DONE) != 0U) { if ((mphy_tx_vendor2 & MPHY_TX_APB_VENDOR2_0_TX_CAL_DONE) != 0U) {
dev_err(dev, "%s: MPhy TX Calibration done\n", __func__); dev_dbg(dev, "%s: MPhy TX Calibration done\n", __func__);
/* Clear TX lane calibration */ /* Clear TX lane calibration */
mphy_tx_vendor2 &=~(MPHY_TX_APB_VENDOR2_0_TX_CAL_EN); mphy_tx_vendor2 &=~(MPHY_TX_APB_VENDOR2_0_TX_CAL_EN);
@@ -388,7 +388,7 @@ static int ufs_tegra_mphy_tx_calibration_status(struct ufs_tegra_host *ufs_tegra
mphy_tx_vendor2 = mphy_readl(mphy_base, mphy_tx_vendor2 = mphy_readl(mphy_base,
MPHY_TX_APB_TX_VENDOR2_0_T264); MPHY_TX_APB_TX_VENDOR2_0_T264);
if ((mphy_tx_vendor2 & MPHY_TX_APB_VENDOR2_0_TX_CAL_DONE) == 0U) { if ((mphy_tx_vendor2 & MPHY_TX_APB_VENDOR2_0_TX_CAL_DONE) == 0U) {
dev_err(dev, dev_dbg(dev,
"%s: MPhy TX Calibration clear completed\n", "%s: MPhy TX Calibration clear completed\n",
__func__); __func__);
break; break;
@@ -431,7 +431,7 @@ static int ufs_tegra_mphy_check_tx_calibration_done_status(struct ufs_tegra_host
dev_err(dev, "%s: MPhy0 TX Calibration status check failed \n", __func__); dev_err(dev, "%s: MPhy0 TX Calibration status check failed \n", __func__);
goto fail; goto fail;
} }
dev_err(dev, "%s: MPhy TX Calibration completed\n", __func__); dev_info(dev, "%s: MPhy TX Calibration completed\n", __func__);
fail: fail:
return err; return err;