summaryrefslogtreecommitdiff
path: root/com32/gplinclude/acpi/xsdt.h
diff options
context:
space:
mode:
authorErwan Velu <erwanaliasr1@gmail.com>2011-01-26 22:14:20 +0100
committerErwan Velu <erwanaliasr1@gmail.com>2011-01-26 22:14:20 +0100
commitb1bb2511d86ae7350d82e3da1865621404d921f9 (patch)
treef469ab38159a0c2595de0f40d6f615b6b8202d19 /com32/gplinclude/acpi/xsdt.h
parenta91be03264cb2656ea4680bd87b3d886acbd5da9 (diff)
downloadsyslinux-b1bb2511d86ae7350d82e3da1865621404d921f9.tar.gz
ACPI: Fixing pointer arithmetic
Several adjustements were necessary ;o)
Diffstat (limited to 'com32/gplinclude/acpi/xsdt.h')
-rw-r--r--com32/gplinclude/acpi/xsdt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/gplinclude/acpi/xsdt.h b/com32/gplinclude/acpi/xsdt.h
index 4d4ca0c9..b23cbc88 100644
--- a/com32/gplinclude/acpi/xsdt.h
+++ b/com32/gplinclude/acpi/xsdt.h
@@ -22,7 +22,7 @@ enum { XSDT_TABLE_FOUND };
typedef struct {
uint8_t *address;
s_acpi_description_header header;
- uint8_t *entry[255];
+ uint64_t *entry[255];
uint8_t entry_count;
bool valid;
} s_xsdt;