| 17 | uint8_t xhciProgIF = PCI_PROGIF_XHCI; |
| 18 | |
| 19 | void XHCIIRQHandler(XHCIController* xHC, regs64_t* r){ |
| 20 | xHC->OnInterrupt(); |
| 21 | } |
| 22 | |
| 23 | int XHCIController::Initialize(){ |
| 24 | if(!PCI::FindGenericDevice(xhciClassCode, xhciSubclass)){ |
nothing calls this directly
no test coverage detected