[syslinux:master] hdt: Adding TCPA support

syslinux-bot for Erwan Velu erwanaliasr1 at gmail.com
Sun Feb 6 14:07:56 PST 2011


Commit-ID:  353f83cc733202bd6601262db5c2ac14acda1ff0
Gitweb:     http://syslinux.zytor.com/commit/353f83cc733202bd6601262db5c2ac14acda1ff0
Author:     Erwan Velu <erwanaliasr1 at gmail.com>
AuthorDate: Mon, 31 Jan 2011 22:02:39 +0100
Committer:  Erwan Velu <erwanaliasr1 at gmail.com>
CommitDate: Mon, 31 Jan 2011 22:02:39 +0100

hdt: Adding TCPA support



---
 com32/hdt/hdt-cli-acpi.c  |    3 +++
 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 05db18e..cbabbba 100644
--- a/com32/hdt/hdt-cli-acpi.c
+++ b/com32/hdt/hdt-cli-acpi.c
@@ -109,6 +109,9 @@ void main_show_acpi(int argc __unused, char **argv __unused,
     if (hardware->acpi.hpet.valid)
 	show_header(hardware->acpi.hpet.address, &hardware->acpi.hpet.header);
 
+    if (hardware->acpi.tcpa.valid)
+	show_header(hardware->acpi.tcpa.address, &hardware->acpi.tcpa.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 1f4877c..46ecb67 100644
--- a/com32/hdt/hdt-menu-acpi.c
+++ b/com32/hdt/hdt-menu-acpi.c
@@ -89,6 +89,9 @@ static void compute_acpi_tables(struct s_my_menu *menu,
     if (hardware->acpi.hpet.valid)
         compute_table(menu,hardware->acpi.hpet.address, &hardware->acpi.hpet.header);
 
+    if (hardware->acpi.tcpa.valid)
+        compute_table(menu,hardware->acpi.tcpa.address, &hardware->acpi.tcpa.header);
+
     /* FACS isn't having the same headers, let's use a dedicated rendering */
     if (hardware->acpi.facs.valid) {
     }



More information about the Syslinux-commits mailing list