summaryrefslogtreecommitdiff
path: root/src/portable/ohci
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-09-27 15:51:03 +0700
committerhathach <[email protected]>2023-09-27 15:51:03 +0700
commit3b0ffd0f488671f1bafa4bcd9e22dd51f8bb6dee (patch)
tree65eaf4b9e46bb91c86d284d5dcf634bd6741d75f /src/portable/ohci
parent46f7cf4da2959b96d3af6b7f23d0d02ff7187f2f (diff)
change hcd_int_handler(rhport, in_isr) signature: add in_isr
change tuh_int_handler() to take in_isr as optional parameter (default = true)
Diffstat (limited to 'src/portable/ohci')
-rw-r--r--src/portable/ohci/ohci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/portable/ohci/ohci.c b/src/portable/ohci/ohci.c
index 413e72037..f978b0965 100644
--- a/src/portable/ohci/ohci.c
+++ b/src/portable/ohci/ohci.c
@@ -667,8 +667,9 @@ static void done_queue_isr(uint8_t hostid)
}
}
-void hcd_int_handler(uint8_t hostid)
-{
+void hcd_int_handler(uint8_t hostid, bool in_isr) {
+ (void) in_isr;
+
uint32_t const int_en = OHCI_REG->interrupt_enable;
uint32_t const int_status = OHCI_REG->interrupt_status & int_en;