Re: [PATCH 1/2] usb: cdns3: imx: simplify clock name usage

From: Peter Chen
Date: Sun Jun 04 2023 - 19:24:04 EST


On 23-05-17 11:25:44, Frank Li wrote:
> Simplifies the clock names in imx_cdns3_core_clks[]. Such as, renaming
> "usb3_lpm_clk" to "lpm". The "usb3" prefix and "clk" suffix were
> redundant.
>
> Signed-off-by: Frank Li <Frank.Li@xxxxxxx>

Acked-by: Peter Chen <peter.chen@xxxxxxxxxx>
> ---
>
> This patch was missed at
> https://lore.kernel.org/imx/20230327145523.3121810-1-Frank.Li@xxxxxxx/
>
> drivers/usb/cdns3/cdns3-imx.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/usb/cdns3/cdns3-imx.c b/drivers/usb/cdns3/cdns3-imx.c
> index 59860d1753fd..5d9ca3c3c71d 100644
> --- a/drivers/usb/cdns3/cdns3-imx.c
> +++ b/drivers/usb/cdns3/cdns3-imx.c
> @@ -105,11 +105,11 @@ static inline void cdns_imx_writel(struct cdns_imx *data, u32 offset, u32 value)
> }
>
> static const struct clk_bulk_data imx_cdns3_core_clks[] = {
> - { .id = "usb3_lpm_clk" },
> - { .id = "usb3_bus_clk" },
> - { .id = "usb3_aclk" },
> - { .id = "usb3_ipg_clk" },
> - { .id = "usb3_core_pclk" },
> + { .id = "lpm" },
> + { .id = "bus" },
> + { .id = "aclk" },
> + { .id = "ipg" },
> + { .id = "core" },
> };
>
> static int cdns_imx_noncore_init(struct cdns_imx *data)
> --
> 2.34.1
>

--

Thanks,
Peter Chen