From ba051b781fdde40a8ed53e60461ab8dffbe355ea Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 28 Jun 2025 19:11:04 +0200 Subject: [PATCH] Shorten the message about the RSDP --- src/acpi/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acpi/mod.rs b/src/acpi/mod.rs index 465f7e79..8548e111 100644 --- a/src/acpi/mod.rs +++ b/src/acpi/mod.rs @@ -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() {