On Wed, 10 Nov 2021 at 20:16, Wolfram Sang <wsa+renesas@xxxxxxxxxxxxxxxxxxxx> wrote: > > This is to improve deferred probe in this driver and to keep consistent > with an up-to-date handling of a soon to be added second clock. > > Signed-off-by: Wolfram Sang <wsa+renesas@xxxxxxxxxxxxxxxxxxxx> Acked-by: Ulf Hansson <ulf.hansson@xxxxxxxxxx> Kind regards Uffe > --- > Changes since RFC v1: > * new patch > > drivers/mmc/host/renesas_sdhi_core.c | 7 ++----- > 1 file changed, 2 insertions(+), 5 deletions(-) > > diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c > index 4572242f9816..230182de5e88 100644 > --- a/drivers/mmc/host/renesas_sdhi_core.c > +++ b/drivers/mmc/host/renesas_sdhi_core.c > @@ -916,11 +916,8 @@ int renesas_sdhi_probe(struct platform_device *pdev, > dma_priv = &priv->dma_priv; > > priv->clk = devm_clk_get(&pdev->dev, NULL); > - if (IS_ERR(priv->clk)) { > - ret = PTR_ERR(priv->clk); > - dev_err(&pdev->dev, "cannot get clock: %d\n", ret); > - return ret; > - } > + if (IS_ERR(priv->clk)) > + return dev_err_probe(&pdev->dev, PTR_ERR(priv->clk), "cannot get clock"); > > /* > * Some controllers provide a 2nd clock just to run the internal card > -- > 2.30.2 >