Re: [PATCH v2 11/13] memory: ti-aemif: simplify with dev_err_probe()

From: Jonathan Cameron
Date: Mon Aug 19 2024 - 12:00:40 EST


On Fri, 16 Aug 2024 12:54:35 +0200
Krzysztof Kozlowski <krzysztof.kozlowski@xxxxxxxxxx> wrote:

> Use dev_err_probe() to avoid dmesg flood on actual defer. This makes
> the code also simpler.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@xxxxxxxxxx>
>
> ---
>
> Changes in v2:
> 1. New patch
> ---
> drivers/memory/ti-aemif.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/memory/ti-aemif.c b/drivers/memory/ti-aemif.c
> index e192db9e0e4b..360f2705b1ff 100644
> --- a/drivers/memory/ti-aemif.c
> +++ b/drivers/memory/ti-aemif.c
> @@ -345,10 +345,8 @@ static int aemif_probe(struct platform_device *pdev)
> platform_set_drvdata(pdev, aemif);
>
> aemif->clk = devm_clk_get(dev, NULL);
> - if (IS_ERR(aemif->clk)) {
> - dev_err(dev, "cannot get clock 'aemif'\n");
> - return PTR_ERR(aemif->clk);
> - }
> + if (IS_ERR(aemif->clk))
> + return dev_err_probe(dev, PTR_ERR(aemif->clk), "cannot get clock 'aemif'\n");
Bit of a long line, so maybe wrap. Up to maintainers

Reviewed-by: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx>

>
> ret = clk_prepare_enable(aemif->clk);
> if (ret)
>