From 039b1f6baf2416d22076cb0016006cb0759bb247 Mon Sep 17 00:00:00 2001 From: Martin Hughes Date: Tue, 28 Apr 2026 10:23:54 +0100 Subject: [PATCH] Trace the table ID better This is helpful when debugging ACPI dumps with multiple SSDTs... --- tools/aml_test_tools/src/lib.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/aml_test_tools/src/lib.rs b/tools/aml_test_tools/src/lib.rs index 6687025c..d1692767 100644 --- a/tools/aml_test_tools/src/lib.rs +++ b/tools/aml_test_tools/src/lib.rs @@ -378,7 +378,13 @@ where let others = tables.iter().filter(|t| t.header().signature != Signature::DSDT); for t in others { - trace!("Loading table: {:?}", t.header().signature); + let h = t.header(); + trace!( + "Loading table: {:?}/{:?}/{:?}", + h.signature, + str::from_utf8(&h.oem_id).unwrap_or("Unknown"), + str::from_utf8(&h.oem_table_id).unwrap_or("Unknown") + ); interpreter.load_table(t.content())?; }