Skip to content

Commit 88704cc

Browse files
phil-oppbjorn3
andauthored
Apply review suggestion
Co-authored-by: bjorn3 <[email protected]>
1 parent 8e79256 commit 88704cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/bin/uefi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fn efi_main(image: Handle, st: SystemTable<Boot>) -> Status {
6161
let mut config_entries = system_table.config_table().iter();
6262
// look for an ACPI2 RSDP first
6363
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
64+
// if no ACPI2 RSDP is found, look for a ACPI1 RSDP
6565
let rsdp = acpi2_rsdp
6666
.or_else(|| config_entries.find(|entry| matches!(entry.guid, cfg::ACPI_GUID)));
6767
rsdp.map(|entry| PhysAddr::new(entry.address as u64));

0 commit comments

Comments
 (0)