Rob Clark <robdcl...@gmail.com> writes:

> Suggested by Rob Herring.  We still support the old names for
> compatibility with downstream android dt files.
>
> Cc: Rob Herring <r...@kernel.org>
> Signed-off-by: Rob Clark <robdcl...@gmail.com>

Huh, I don't think I would have cleaned up DT bindings in exchange for
adding driver code like this.  But the code seems correct, so other than
one optional suggestion:

Reviewed-by: Eric Anholt <e...@anholt.net>

> +struct clk *msm_clk_get(struct platform_device *pdev, const char *name)
> +{
> +     struct clk *clk;
> +     char name2[32];
> +
> +     clk = devm_clk_get(&pdev->dev, name);
> +     if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
> +             return clk;
> +
> +     snprintf(name2, sizeof(name2), "%s_clk", name);
> +
> +     clk = devm_clk_get(&pdev->dev, name2);
> +     if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
> +             dev_warn(&pdev->dev, "Using legacy clk name binding.  Use "
> +                             "\"%s\" instead of \"%s\"\n", name, name2);

Drop the second "|| PTR_ERR(clk)" case, so that you only get one warning
printed at boot if deferring happens?

Attachment: signature.asc
Description: PGP signature

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to