Add interrupt processing functions

This commit is contained in:
xj 2024-08-08 20:20:28 -07:00
parent 4170e41ab7
commit 45a36e5776
2 changed files with 5 additions and 0 deletions

View File

@ -1085,3 +1085,7 @@ int bind_xhci_intr(void *para){
return 0;
}
int create_xhci_intr_service(void *para){
return 0;
}

View File

@ -165,6 +165,7 @@ __WEAK int usb_hc_get_register_id(unsigned long base_addr);
__WEAK unsigned long usb_hc_get_register_vir_base(uint32_t id);
int bind_xhci_intr(void *para);
int create_xhci_intr_service(void *para);
IPC_SERVICES(IpcXhciIntrHandler, Ipc_xhci_intr);