Home
last modified time | relevance | path

Searched refs:udc_clock (Results 1 – 1 of 1) sorted by relevance

/Linux-v5.15/drivers/usb/gadget/udc/
Ds3c2410_udc.c53 static struct clk *udc_clock; variable
1750 udc_clock = clk_get(NULL, "usb-device"); in s3c2410_udc_probe()
1751 if (IS_ERR(udc_clock)) { in s3c2410_udc_probe()
1753 retval = PTR_ERR(udc_clock); in s3c2410_udc_probe()
1757 clk_prepare_enable(udc_clock); in s3c2410_udc_probe()
1870 clk_disable_unprepare(udc_clock); in s3c2410_udc_probe()
1871 clk_put(udc_clock); in s3c2410_udc_probe()
1872 udc_clock = NULL; in s3c2410_udc_probe()
1908 if (!IS_ERR(udc_clock) && udc_clock != NULL) { in s3c2410_udc_remove()
1909 clk_disable_unprepare(udc_clock); in s3c2410_udc_remove()
[all …]