summaryrefslogtreecommitdiff
path: root/com32/gplinclude/acpi/rsdp.h
diff options
context:
space:
mode:
authorErwan Velu <erwanaliasr1@gmail.com>2011-01-31 16:29:49 +0100
committerErwan Velu <erwanaliasr1@gmail.com>2011-01-31 16:29:49 +0100
commit7cb79745098c7b84888646b36bdc1c8a2cf99d85 (patch)
tree1ccdee6011e7d9318292dd52f4a917e9ea284269 /com32/gplinclude/acpi/rsdp.h
parent813daa0f83959de7c1ece9381966905a538919db (diff)
downloadsyslinux-7cb79745098c7b84888646b36bdc1c8a2cf99d85.tar.gz
ACPI: Fixing ACPI return codes
Without defining values using the negative values as a return option could lead to a false positive case. Setting up the values helps prevent from using the 0 value.
Diffstat (limited to 'com32/gplinclude/acpi/rsdp.h')
-rw-r--r--com32/gplinclude/acpi/rsdp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/gplinclude/acpi/rsdp.h b/com32/gplinclude/acpi/rsdp.h
index d3c28c08..8f585fd9 100644
--- a/com32/gplinclude/acpi/rsdp.h
+++ b/com32/gplinclude/acpi/rsdp.h
@@ -20,7 +20,7 @@
#define RSDP "RSD PTR"
-enum { RSDP_TABLE_FOUND };
+enum { RSDP_TABLE_FOUND = 1 };
typedef struct {
uint8_t *address;