From 13ebe960ddaaa7c070638737ca1a99141691a11d Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 16 Apr 2024 11:13:50 -0600 Subject: [PATCH] xhcid: always use polling --- xhcid/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xhcid/src/main.rs b/xhcid/src/main.rs index 6b9fe1bd79..6a10660160 100644 --- a/xhcid/src/main.rs +++ b/xhcid/src/main.rs @@ -204,7 +204,7 @@ fn daemon(daemon: redox_daemon::Daemon) -> ! { let address = unsafe { bar.physmap_mem("xhcid") } as usize; - let (irq_file, interrupt_method) = get_int_method(&mut pcid_handle, address); + let (irq_file, interrupt_method) = (None, InterruptMethod::Polling); //TODO: get_int_method(&mut pcid_handle, address); println!(" + XHCI {}", pci_config.func.display());