Add interrupt processing functions

This commit is contained in:
xj 2024-08-09 01:07:10 -07:00
parent 0816b5427a
commit 91d06a23b3
1 changed files with 13 additions and 0 deletions

View File

@ -1087,5 +1087,18 @@ int bind_xhci_intr(void *para){
} }
int create_xhci_intr_service(void *para){ int create_xhci_intr_service(void *para){
struct xhci_host *xhci;
int tid;
xhci = (struct xhci_host *)para;
if(xhci == NULL){
return -1;
}
// tid = thread();
return 0; return 0;
} }