We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88704cc commit a9f9fbeCopy full SHA for a9f9fbe
src/bin/uefi.rs
@@ -64,7 +64,7 @@ fn efi_main(image: Handle, st: SystemTable<Boot>) -> Status {
64
// 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));
+ rsdp.map(|entry| PhysAddr::new(entry.address as u64))
68
},
69
};
70
0 commit comments