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

Configure Feed

Select the types of activity you want to include in your feed.

usb: chipidea: ci_hdrc_imx: align usb wakeup clock name with dt-bindings

The dt-bindings is going to use "usb_wakeup" as wakup clock name. This will
align the change with dt-bindings.

Acked-by: Peter Chen <peter.chen@kernel.org>
Signed-off-by: Xu Yang <xu.yang_2@nxp.com>

Link: https://lore.kernel.org/r/20240321081439.541799-11-xu.yang_2@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Xu Yang and committed by
Greg Kroah-Hartman
43590333 3bfe384f

+1 -1
+1 -1
drivers/usb/chipidea/ci_hdrc_imx.c
··· 212 212 /* Get wakeup clock. Not all of the platforms need to 213 213 * handle this clock. So make it optional. 214 214 */ 215 - data->clk_wakeup = devm_clk_get_optional(dev, "usb_wakeup_clk"); 215 + data->clk_wakeup = devm_clk_get_optional(dev, "usb_wakeup"); 216 216 if (IS_ERR(data->clk_wakeup)) 217 217 ret = dev_err_probe(dev, PTR_ERR(data->clk_wakeup), 218 218 "Failed to get wakeup clk\n");