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 @@ +#ifndef __ACPI_CONTAINER_H +#define __ACPI_CONTAINER_H + +#include <linux/kernel.h> + +struct acpi_container { + acpi_handle handle; + unsigned long sun; + int state; +}; + +#endif /* __ACPI_CONTAINER_H */ + |