summaryrefslogtreecommitdiff
path: root/src/host/usbh.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-12-13 13:53:43 +0700
committerhathach <[email protected]>2018-12-13 13:53:43 +0700
commitaf1ffe4675ca9eeeebd47a82f3508eecdc1486c5 (patch)
tree19c02dfa78b2d5470b0845e86fe4e51707de61bd /src/host/usbh.c
parentbc46dc6edf3ff4bb72fb36e74b8a7d3da447d2d4 (diff)
remove task void* param
Diffstat (limited to 'src/host/usbh.c')
-rw-r--r--src/host/usbh.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/host/usbh.c b/src/host/usbh.c
index 7bcf7aaaf..27d32330a 100644
--- a/src/host/usbh.c
+++ b/src/host/usbh.c
@@ -602,10 +602,8 @@ bool enum_task(hcd_event_t* event)
/* USB Host Driver task
* This top level thread manages all host controller event and delegates events to class-specific drivers.
*/
-void usbh_task(void* param)
+void usbh_task(void)
{
- (void) param;
-
// Loop until there is no more events in the queue
while (1)
{