We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e79256 commit 88704ccCopy full SHA for 88704cc
src/bin/uefi.rs
@@ -61,7 +61,7 @@ fn efi_main(image: Handle, st: SystemTable<Boot>) -> Status {
61
let mut config_entries = system_table.config_table().iter();
62
// look for an ACPI2 RSDP first
63
let acpi2_rsdp = config_entries.find(|entry| matches!(entry.guid, cfg::ACPI2_GUID));
64
- // if no ACPI2 RSDP is found, look for a ACPI RSDP
+ // if no ACPI2 RSDP is found, look for a ACPI1 RSDP
65
let rsdp = acpi2_rsdp
66
.or_else(|| config_entries.find(|entry| matches!(entry.guid, cfg::ACPI_GUID)));
67
rsdp.map(|entry| PhysAddr::new(entry.address as u64));
0 commit comments