summaryrefslogtreecommitdiff
path: root/src/tusb.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/tusb.c
parentbc46dc6edf3ff4bb72fb36e74b8a7d3da447d2d4 (diff)
remove task void* param
Diffstat (limited to 'src/tusb.c')
-rw-r--r--src/tusb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tusb.c b/src/tusb.c
index fd390722b..253adc59c 100644
--- a/src/tusb.c
+++ b/src/tusb.c
@@ -71,11 +71,11 @@ bool tusb_init(void)
void tusb_task(void)
{
#if TUSB_OPT_HOST_ENABLED
- usbh_task(NULL);
+ usbh_task();
#endif
#if TUSB_OPT_DEVICE_ENABLED
- usbd_task(NULL);
+ usbd_task();
#endif
}