summaryrefslogtreecommitdiff
path: root/com32/gplinclude/acpi/ssdt.h
diff options
context:
space:
mode:
authorErwan Velu <erwan.velu@free.fr>2009-12-02 16:52:34 +0100
committerErwan Velu <erwan.velu@free.fr>2009-12-04 10:19:01 +0100
commitcb32b8d13d9c313527ef20e6df52aab9830ff0d6 (patch)
tree7414230bea86dfa6bda5a56916ab087a1c385b2b /com32/gplinclude/acpi/ssdt.h
parent67f8125c50888d42c37431fac30186e0d514165d (diff)
downloadsyslinux-cb32b8d13d9c313527ef20e6df52aab9830ff0d6.tar.gz
acpi: Adding SSDT & PSDT
Impact: Adding SSDT & PSDT Adding SSDT & PSDT
Diffstat (limited to 'com32/gplinclude/acpi/ssdt.h')
-rw-r--r--com32/gplinclude/acpi/ssdt.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/com32/gplinclude/acpi/ssdt.h b/com32/gplinclude/acpi/ssdt.h
new file mode 100644
index 00000000..0170d393
--- /dev/null
+++ b/com32/gplinclude/acpi/ssdt.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 SSDT_H
+#define SSDT_H
+#include <inttypes.h>
+#include <stdbool.h>
+
+typedef struct {
+ uint64_t address;
+ s_acpi_description_header header;
+ uint8_t *definition_block;
+ bool valid;
+} s_ssdt;
+
+#endif