diff options
-rw-r--r-- | Kernel/CommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CommandLine.cpp b/Kernel/CommandLine.cpp index d8e1d671f2..4f8c254a7f 100644 --- a/Kernel/CommandLine.cpp +++ b/Kernel/CommandLine.cpp @@ -110,7 +110,7 @@ UNMAP_AFTER_INIT bool CommandLine::is_vmmouse_enabled() const UNMAP_AFTER_INIT PCIAccessLevel CommandLine::pci_access_level() const { - auto value = lookup("pci_ecam").value_or("on"); + auto value = lookup("pci_ecam").value_or("off"); if (value == "on") return PCIAccessLevel::MappingPerBus; if (value == "per-device") |