2023-08-08 19:07:13

by Brian Masney

[permalink] [raw]
Subject: [PATCH 1/2] scsi: ufs: core: convert to dev_err_probe() in hba_init

Convert ufshcd_variant_hba_init() over to use dev_err_probe() to avoid
log messages like the following on bootup:

ufshcd-qcom 1d84000.ufs: ufshcd_variant_hba_init: variant qcom init
failed err -517

While changes are being made here, let's go ahead and clean up the rest
of that function.

Signed-off-by: Brian Masney <[email protected]>
---
drivers/ufs/core/ufshcd.c | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index 129446775796..90d87cf5e25e 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -9228,17 +9228,18 @@ static int ufshcd_init_clocks(struct ufs_hba *hba)

static int ufshcd_variant_hba_init(struct ufs_hba *hba)
{
- int err = 0;
+ int ret;

if (!hba->vops)
- goto out;
+ return 0;

- err = ufshcd_vops_init(hba);
- if (err)
- dev_err(hba->dev, "%s: variant %s init failed err %d\n",
- __func__, ufshcd_get_var_name(hba), err);
-out:
- return err;
+ ret = ufshcd_vops_init(hba);
+ if (ret)
+ dev_err_probe(hba->dev, ret,
+ "%s: variant %s init failed with error %d\n",
+ __func__, ufshcd_get_var_name(hba), ret);
+
+ return ret;
}

static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
--
2.41.0



2023-08-08 23:50:24

by Hugo Villeneuve

[permalink] [raw]
Subject: Re: [PATCH 1/2] scsi: ufs: core: convert to dev_err_probe() in hba_init

On Tue, 8 Aug 2023 10:26:49 -0400
Brian Masney <[email protected]> wrote:

> Convert ufshcd_variant_hba_init() over to use dev_err_probe() to avoid
> log messages like the following on bootup:
>
> ufshcd-qcom 1d84000.ufs: ufshcd_variant_hba_init: variant qcom init
> failed err -517
>
> While changes are being made here, let's go ahead and clean up the rest
> of that function.

Hi,
you should not combine code cleanup and fixes/improvements in the same
patch, split them.

Hugo Villeneuve


> Signed-off-by: Brian Masney <[email protected]>
> ---
> drivers/ufs/core/ufshcd.c | 17 +++++++++--------
> 1 file changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
> index 129446775796..90d87cf5e25e 100644
> --- a/drivers/ufs/core/ufshcd.c
> +++ b/drivers/ufs/core/ufshcd.c
> @@ -9228,17 +9228,18 @@ static int ufshcd_init_clocks(struct ufs_hba *hba)
>
> static int ufshcd_variant_hba_init(struct ufs_hba *hba)
> {
> - int err = 0;
> + int ret;
>
> if (!hba->vops)
> - goto out;
> + return 0;
>
> - err = ufshcd_vops_init(hba);
> - if (err)
> - dev_err(hba->dev, "%s: variant %s init failed err %d\n",
> - __func__, ufshcd_get_var_name(hba), err);
> -out:
> - return err;
> + ret = ufshcd_vops_init(hba);
> + if (ret)
> + dev_err_probe(hba->dev, ret,
> + "%s: variant %s init failed with error %d\n",
> + __func__, ufshcd_get_var_name(hba), ret);
> +
> + return ret;
> }
>
> static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
> --
> 2.41.0
>

2023-08-09 19:53:51

by Brian Masney

[permalink] [raw]
Subject: Re: [PATCH 1/2] scsi: ufs: core: convert to dev_err_probe() in hba_init

On Tue, Aug 08, 2023 at 04:29:29PM -0400, Hugo Villeneuve wrote:
> On Tue, 8 Aug 2023 10:26:49 -0400
> Brian Masney <[email protected]> wrote:
>
> > Convert ufshcd_variant_hba_init() over to use dev_err_probe() to avoid
> > log messages like the following on bootup:
> >
> > ufshcd-qcom 1d84000.ufs: ufshcd_variant_hba_init: variant qcom init
> > failed err -517
> >
> > While changes are being made here, let's go ahead and clean up the rest
> > of that function.
>
> Hi,
> you should not combine code cleanup and fixes/improvements in the same
> patch, split them.

This is a pretty simple patch as is, and split up the code clean up is
not very useful on its own. I'll just skip doing the code cleanup and
only post the dev_err_probe() change in v2.

Brian