From 2f6f9da5e3fd581f74ed44e233c0df3fd247b63e Mon Sep 17 00:00:00 2001 From: guozhanxin Date: Wed, 26 Jan 2022 11:00:16 +0800 Subject: [PATCH] fix usbhost issue by #4378 --- bsp/nuvoton/libraries/m2354/rtt_port/drv_usbhost.c | 2 +- bsp/nuvoton/libraries/n9h30/rtt_port/drv_usbhost.c | 2 +- components/drivers/usb/usbhost/core/driver.c | 2 +- components/drivers/usb/usbhost/core/hub.c | 2 +- components/drivers/usb/usbhost/core/usbhost.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bsp/nuvoton/libraries/m2354/rtt_port/drv_usbhost.c b/bsp/nuvoton/libraries/m2354/rtt_port/drv_usbhost.c index 964bb7ba0..fe5895dc9 100644 --- a/bsp/nuvoton/libraries/m2354/rtt_port/drv_usbhost.c +++ b/bsp/nuvoton/libraries/m2354/rtt_port/drv_usbhost.c @@ -866,7 +866,7 @@ int nu_usbh_register(void) RT_ASSERT(res == RT_EOK); /*initialize the usb host function */ - res = rt_usb_host_init(); + res = rt_usb_host_init("usbh"); RT_ASSERT(res == RT_EOK); #if defined(RT_USING_PM) diff --git a/bsp/nuvoton/libraries/n9h30/rtt_port/drv_usbhost.c b/bsp/nuvoton/libraries/n9h30/rtt_port/drv_usbhost.c index a5660ba32..85a1af96b 100644 --- a/bsp/nuvoton/libraries/n9h30/rtt_port/drv_usbhost.c +++ b/bsp/nuvoton/libraries/n9h30/rtt_port/drv_usbhost.c @@ -942,7 +942,7 @@ int nu_usbh_register(void) /*initialize the usb host function */ - res = rt_usb_host_init(); + res = rt_usb_host_init("usbh"); RT_ASSERT(res == RT_EOK); #if defined(RT_USING_PM) diff --git a/components/drivers/usb/usbhost/core/driver.c b/components/drivers/usb/usbhost/core/driver.c index 102e38815..73360d307 100644 --- a/components/drivers/usb/usbhost/core/driver.c +++ b/components/drivers/usb/usbhost/core/driver.c @@ -144,4 +144,4 @@ ucd_t rt_usbh_class_driver_find(int class_code, int subclass_code) /* not found */ return RT_NULL; -} \ No newline at end of file +} diff --git a/components/drivers/usb/usbhost/core/hub.c b/components/drivers/usb/usbhost/core/hub.c index bf48bc4c6..eca06f656 100644 --- a/components/drivers/usb/usbhost/core/hub.c +++ b/components/drivers/usb/usbhost/core/hub.c @@ -718,4 +718,4 @@ void rt_usbh_hub_init(uhcd_t hcd) /* startup usb host thread */ rt_thread_startup(thread); } -} \ No newline at end of file +} diff --git a/components/drivers/usb/usbhost/core/usbhost.c b/components/drivers/usb/usbhost/core/usbhost.c index 84b9640b7..9a4c166ac 100644 --- a/components/drivers/usb/usbhost/core/usbhost.c +++ b/components/drivers/usb/usbhost/core/usbhost.c @@ -65,4 +65,4 @@ rt_err_t rt_usb_host_init(const char *name) rt_device_init(uhc); return RT_EOK; -} \ No newline at end of file +} -- GitLab