diff options
Diffstat (limited to 'include/acpi/container.h')
-rw-r--r-- | include/acpi/container.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/acpi/container.h b/include/acpi/container.h new file mode 100644 index 000000000000..d716df04d9dc --- /dev/null +++ b/include/acpi/container.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef __ACPI_CONTAINER_H | ||
2 | #define __ACPI_CONTAINER_H | ||
3 | |||
4 | #include <linux/kernel.h> | ||
5 | |||
6 | struct acpi_container { | ||
7 | acpi_handle handle; | ||
8 | unsigned long sun; | ||
9 | int state; | ||
10 | }; | ||
11 | |||
12 | #endif /* __ACPI_CONTAINER_H */ | ||
13 | |||