diff options
-rw-r--r-- | com32/hdt/hdt-cli-acpi.c | 3 | ||||
-rw-r--r-- | com32/hdt/hdt-menu-acpi.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/com32/hdt/hdt-cli-acpi.c b/com32/hdt/hdt-cli-acpi.c index 46f2d4ed..6f752f12 100644 --- a/com32/hdt/hdt-cli-acpi.c +++ b/com32/hdt/hdt-cli-acpi.c @@ -115,6 +115,9 @@ void main_show_acpi(int argc __unused, char **argv __unused, if (hardware->acpi.mcfg.valid) show_header(hardware->acpi.mcfg.address, &hardware->acpi.mcfg.header); + if (hardware->acpi.slic.valid) + show_header(hardware->acpi.slic.address, &hardware->acpi.slic.header); + /* FACS isn't having the same headers, let's use a dedicated rendering */ if (hardware->acpi.facs.valid) { s_facs *fa = &hardware->acpi.facs; diff --git a/com32/hdt/hdt-menu-acpi.c b/com32/hdt/hdt-menu-acpi.c index 3cd8e37b..2c1e1620 100644 --- a/com32/hdt/hdt-menu-acpi.c +++ b/com32/hdt/hdt-menu-acpi.c @@ -95,6 +95,9 @@ static void compute_acpi_tables(struct s_my_menu *menu, if (hardware->acpi.mcfg.valid) compute_table(menu,hardware->acpi.mcfg.address, &hardware->acpi.mcfg.header); + if (hardware->acpi.slic.valid) + compute_table(menu,hardware->acpi.slic.address, &hardware->acpi.slic.header); + /* FACS isn't having the same headers, let's use a dedicated rendering */ if (hardware->acpi.facs.valid) { s_facs *fa = &hardware->acpi.facs; |