diff options
| author | hathach <[email protected]> | 2013-03-23 15:00:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-03-23 15:00:56 +0700 |
| commit | 4adfc6a6d8a77ca9526ec04e62c83ea88ffdddd7 (patch) | |
| tree | 9c3283c4317d3e8b9bfc536c5b59a1ef622b2619 /tinyusb/host/ehci | |
| parent | e6b8166a581d5016a2fa0c9f8bbca22bcb6b6bba (diff) | |
change signature usbh_isr to add tusb_bus_event_t parameter
change singature of call_isr as well
Diffstat (limited to 'tinyusb/host/ehci')
| -rw-r--r-- | tinyusb/host/ehci/ehci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c index e24548bc1..9d8bb16e7 100644 --- a/tinyusb/host/ehci/ehci.c +++ b/tinyusb/host/ehci/ehci.c @@ -224,7 +224,7 @@ void async_list_process_isr(ehci_qhd_t * const async_head, ehci_registers_t * co pipe_hdl.xfer_type = TUSB_XFER_BULK; pipe_hdl.index = qhd_get_index(p_qhd); } - usbh_isr( pipe_hdl, p_qhd->class_code); // call USBH call back + usbh_isr( pipe_hdl, p_qhd->class_code, BUS_EVENT_XFER_COMPLETE); // call USBH callback } p_qhd->p_qtd_list_head->used = 0; // free QTD |
