forked from xuos/xiuos
Add interrupt processing functions
This commit is contained in:
parent
0816b5427a
commit
91d06a23b3
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue