2020-01-28 11:44:29

by Martin Kaiser

[permalink] [raw]
Subject: [PATCH 4/6] hwrng: imx-rngc - (trivial) simplify error prints

Remove the device name, it is added by the dev_...() routines.

Drop the error code as well. It will be shown by the driver core when
the probe operation failed.

Signed-off-by: Martin Kaiser <[email protected]>
---
drivers/char/hw_random/imx-rngc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/char/hw_random/imx-rngc.c b/drivers/char/hw_random/imx-rngc.c
index 1381ddd5b891..8222055b9e9b 100644
--- a/drivers/char/hw_random/imx-rngc.c
+++ b/drivers/char/hw_random/imx-rngc.c
@@ -258,14 +258,14 @@ static int imx_rngc_probe(struct platform_device *pdev)
if (self_test) {
ret = imx_rngc_self_test(rngc);
if (ret) {
- dev_err(rngc->dev, "FSL RNGC self test failed.\n");
+ dev_err(rngc->dev, "self test failed\n");
goto err;
}
}

ret = devm_hwrng_register(&pdev->dev, &rngc->rng);
if (ret) {
- dev_err(&pdev->dev, "FSL RNGC registering failed (%d)\n", ret);
+ dev_err(&pdev->dev, "hwrng registration failed\n");
goto err;
}

--
2.20.1


Subject: Re: [PATCH 4/6] hwrng: imx-rngc - (trivial) simplify error prints

On Tue, 28 Jan 2020 at 16:31, Martin Kaiser <[email protected]> wrote:
>
> Remove the device name, it is added by the dev_...() routines.
>
> Drop the error code as well. It will be shown by the driver core when
> the probe operation failed.
>
> Signed-off-by: Martin Kaiser <[email protected]>
> ---
> drivers/char/hw_random/imx-rngc.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/char/hw_random/imx-rngc.c b/drivers/char/hw_random/imx-rngc.c
> index 1381ddd5b891..8222055b9e9b 100644
> --- a/drivers/char/hw_random/imx-rngc.c
> +++ b/drivers/char/hw_random/imx-rngc.c
> @@ -258,14 +258,14 @@ static int imx_rngc_probe(struct platform_device *pdev)
> if (self_test) {
> ret = imx_rngc_self_test(rngc);
> if (ret) {
> - dev_err(rngc->dev, "FSL RNGC self test failed.\n");
> + dev_err(rngc->dev, "self test failed\n");
> goto err;
> }
> }
>
> ret = devm_hwrng_register(&pdev->dev, &rngc->rng);
> if (ret) {
> - dev_err(&pdev->dev, "FSL RNGC registering failed (%d)\n", ret);
> + dev_err(&pdev->dev, "hwrng registration failed\n");
> goto err;
> }
>
> --
> 2.20.1
>

Reviewed-by: PrasannaKumar Muralidharan <[email protected]>