summaryrefslogtreecommitdiff
path: root/com32/gplinclude/acpi/dsdt.h
diff options
context:
space:
mode:
authorErwan Velu <erwan.velu@free.fr>2009-12-02 15:56:17 +0100
committerErwan Velu <erwan.velu@free.fr>2009-12-04 10:19:01 +0100
commitb054981837d082d3bd97ad6127816a82c8ad7278 (patch)
tree68d14ca957c340c3d132c5f8315ff7ce5e3f748c /com32/gplinclude/acpi/dsdt.h
parent50f2246c8ce3c98a602e9186f0cc4c05a13cab46 (diff)
downloadsyslinux-b054981837d082d3bd97ad6127816a82c8ad7278.tar.gz
acpi: Adding dsdt
Impact: Adding dsdt Adding DSDT
Diffstat (limited to 'com32/gplinclude/acpi/dsdt.h')
-rw-r--r--com32/gplinclude/acpi/dsdt.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/com32/gplinclude/acpi/dsdt.h b/com32/gplinclude/acpi/dsdt.h
new file mode 100644
index 00000000..abcbdf86
--- /dev/null
+++ b/com32/gplinclude/acpi/dsdt.h
@@ -0,0 +1,25 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2009 Erwan Velu - All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
+ * Boston MA 02111-1307, USA; either version 2 of the License, or
+ * (at your option) any later version; incorporated herein by reference.
+ *
+ * ----------------------------------------------------------------------- */
+
+#ifndef DSDT_H
+#define DSDT_H
+#include <inttypes.h>
+#include <stdbool.h>
+
+typedef struct {
+ uint64_t address;
+ s_acpi_description_header header;
+ uint8_t *definition_block;
+ bool valid;
+} s_dsdt;
+
+#endif