Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usb: cdns3: imx: simplify clock name usage

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@nxp.com>
Link: https://lore.kernel.org/r/20230517152545.3404508-1-Frank.Li@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Frank Li and committed by
Greg Kroah-Hartman
7a053bf2 6f5bd24f

+5 -5
+5 -5
drivers/usb/cdns3/cdns3-imx.c
··· 105 105 } 106 106 107 107 static const struct clk_bulk_data imx_cdns3_core_clks[] = { 108 - { .id = "usb3_lpm_clk" }, 109 - { .id = "usb3_bus_clk" }, 110 - { .id = "usb3_aclk" }, 111 - { .id = "usb3_ipg_clk" }, 112 - { .id = "usb3_core_pclk" }, 108 + { .id = "lpm" }, 109 + { .id = "bus" }, 110 + { .id = "aclk" }, 111 + { .id = "ipg" }, 112 + { .id = "core" }, 113 113 }; 114 114 115 115 static int cdns_imx_noncore_init(struct cdns_imx *data)