[syslinux:master] hdt: flags_to_string is now part of the acpi code

syslinux-bot for Erwan Velu erwanaliasr1 at gmail.com
Mon Apr 25 15:28:46 PDT 2011


Commit-ID:  18a406bb082e992691cf50df5f984dbd1cd6082b
Gitweb:     http://syslinux.zytor.com/commit/18a406bb082e992691cf50df5f984dbd1cd6082b
Author:     Erwan Velu <erwanaliasr1 at gmail.com>
AuthorDate: Mon, 4 Apr 2011 20:14:45 +0200
Committer:  Erwan Velu <erwanaliasr1 at gmail.com>
CommitDate: Mon, 4 Apr 2011 20:14:45 +0200

hdt: flags_to_string is now part of the acpi code

This code is now generic, let's remove it from hdt.


---
 com32/hdt/hdt-cli-acpi.c |   19 -------------------
 1 files changed, 0 insertions(+), 19 deletions(-)

diff --git a/com32/hdt/hdt-cli-acpi.c b/com32/hdt/hdt-cli-acpi.c
index 1b608c2..76f54df 100644
--- a/com32/hdt/hdt-cli-acpi.c
+++ b/com32/hdt/hdt-cli-acpi.c
@@ -158,25 +158,6 @@ static void show_local_apic(s_madt * madt)
     }
 }
 
-/* M1PS flags have to be interpreted as strings */
-static char *flags_to_string(char *buffer, uint16_t flags)
-{
-    memset(buffer, 0, sizeof(buffer));
-    strcpy(buffer, "default");
-    if ((flags & POLARITY_ACTIVE_HIGH) == POLARITY_ACTIVE_HIGH)
-	strcpy(buffer, "high");
-    else if ((flags & POLARITY_ACTIVE_LOW) == POLARITY_ACTIVE_LOW)
-	strcpy(buffer, "low");
-    if ((flags & TRIGGER_EDGE) == TRIGGER_EDGE)
-	strncat(buffer, " edge", 5);
-    else if ((flags & TRIGGER_LEVEL) == TRIGGER_LEVEL)
-	strncat(buffer, " level", 6);
-    else
-	strncat(buffer, " default", 8);
-
-    return buffer;
-}
-
 /* Display the local apic NMI configuration */
 static void show_local_apic_nmi(s_madt * madt)
 {



More information about the Syslinux-commits mailing list