| 226 | } |
| 227 | |
| 228 | void XHCIController::EnableSlot(){ |
| 229 | xhci_enable_slot_command_trb_t trb; |
| 230 | memset(&trb, 0, XHCI_TRB_SIZE); |
| 231 | |
| 232 | trb.trbType = TRBTypes::TRBTypeEnableSlotCommand; |
| 233 | |
| 234 | SendCommand(&trb); |
| 235 | } |
| 236 | |
| 237 | void XHCIController::OnInterrupt(){ |
| 238 | Log::Info("[XHCI] Interrupt!"); |