diff options
| author | hathach <[email protected]> | 2019-11-21 16:08:08 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-11-21 16:08:08 +0700 |
| commit | 043697ab9589955f831f4f716bb37b5470ba11f6 (patch) | |
| tree | df9e38361c13d0a8ee46bc24cd2e989a03adc37d /src/host | |
| parent | 54d597b72392fc7d7e4785eadd3eaecb073ed216 (diff) | |
rename lpc 17/18 irq to dcd_isr/hcd_isr
Diffstat (limited to 'src/host')
| -rw-r--r-- | src/host/ehci/ehci.c | 2 | ||||
| -rw-r--r-- | src/host/ohci/ohci.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/host/ehci/ehci.c b/src/host/ehci/ehci.c index 63e87dd54..04ee5c5ce 100644 --- a/src/host/ehci/ehci.c +++ b/src/host/ehci/ehci.c @@ -623,7 +623,7 @@ static void xfer_error_isr(uint8_t hostid) }
//------------- Host Controller Driver's Interrupt Handler -------------//
-void hal_hcd_isr(uint8_t rhport)
+void hcd_isr(uint8_t rhport)
{
ehci_registers_t* regs = ehci_data.regs;
diff --git a/src/host/ohci/ohci.c b/src/host/ohci/ohci.c index ea553baa2..9fa861ac9 100644 --- a/src/host/ohci/ohci.c +++ b/src/host/ohci/ohci.c @@ -599,7 +599,7 @@ static void done_queue_isr(uint8_t hostid) }
}
-void hal_hcd_isr(uint8_t hostid)
+void hcd_isr(uint8_t hostid)
{
uint32_t const int_en = OHCI_REG->interrupt_enable;
uint32_t const int_status = OHCI_REG->interrupt_status & int_en;
|
