summaryrefslogtreecommitdiff
path: root/firmware/drivers/m66591.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/m66591.c')
-rw-r--r--firmware/drivers/m66591.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/m66591.c b/firmware/drivers/m66591.c
index d09b269f33..5da1908290 100644
--- a/firmware/drivers/m66591.c
+++ b/firmware/drivers/m66591.c
@@ -869,7 +869,7 @@ int usb_drv_send(int endpoint, void* ptr, int length)
869/* This function begins a receive (on an OUT endpoint), it should not block 869/* This function begins a receive (on an OUT endpoint), it should not block
870 * so the actual receive is done in the interrupt handler. 870 * so the actual receive is done in the interrupt handler.
871 */ 871 */
872int usb_drv_recv(int endpoint, void* ptr, int length) 872int usb_drv_recv_nonblocking(int endpoint, void* ptr, int length)
873{ 873{
874 return mxx_queue(endpoint, ptr, length, false, false); 874 return mxx_queue(endpoint, ptr, length, false, false);
875} 875}