Re: [RFCv1 1/8] phy: amlogic: meson8b-usb2: Use clock bulk to get clocks for phy

From: Anand Moon
Date: Fri Jun 18 2021 - 11:33:37 EST


Hi Martin,

On Fri, 18 Jun 2021 at 04:03, Martin Blumenstingl
<martin.blumenstingl@xxxxxxxxxxxxxx> wrote:
>
> Hi Anand,
>
> On Thu, Jun 17, 2021 at 9:42 PM Anand Moon <linux.amoon@xxxxxxxxx> wrote:
> [...]
> > + int num_clks;
> > + struct clk_bulk_data *clks;
> personally I'd get rid of the num_clks as this value is static
> instead I would add a #define with the number of clocks and then...
>
> > struct reset_control *reset;
> ... use something like:
> struct clk_bulk_data clks[MESON8B_USB2_PHY_NUM_CLKS];
>
> [...]
> > + dev_err(&phy->dev, "Failed to enable USB clock\n");
> clock -> clocks
>
> [...]
> > + priv->num_clks = ARRAY_SIZE(meson_phy_clks);
> > + priv->clks = devm_kcalloc(&pdev->dev, priv->num_clks,
> > + sizeof(*priv->clks), GFP_KERNEL);
> > + if (!priv->clks)
> > + return -ENOMEM;
> by using a fixed-size array as suggested above you don't need to
> dynamically allocate memory anymore
>
>

Thanks for this tip.It works for me.

> Best regards,
> Martin

Thanks

-Anand