Shorten the message about the RSDP

This commit is contained in:
bjorn3 2025-06-28 19:11:04 +02:00
parent 1864f12913
commit ba051b781f
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ pub unsafe fn init(already_supplied_rsdp: Option<*const u8>) {
let rsdp_opt = RSDP::get_rsdp(&mut KernelMapper::lock(), already_supplied_rsdp);
if let Some(rsdp) = rsdp_opt {
info!("RSDP: {:?}", rsdp);
info!("SDT address: {:#x}", rsdp.sdt_address());
let rxsdt = get_sdt(rsdp.sdt_address(), &mut KernelMapper::lock());
for &c in rxsdt.signature.iter() {