diff options
author | Len Brown <len.brown@intel.com> | 2006-06-16 03:36:11 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-06-16 03:36:11 +0200 |
commit | 8f2ddb37e564a9616c05fa0d5652e0049072a730 (patch) | |
tree | a28df8762bb77979b0ff8cc14cfcc12a1204ca09 /include/acpi | |
parent | Pull bugzilla-5764 into release branch (diff) | |
parent | ACPI: create acpi_thermal_resume() (diff) | |
download | linux-8f2ddb37e564a9616c05fa0d5652e0049072a730.tar.xz linux-8f2ddb37e564a9616c05fa0d5652e0049072a730.zip |
Pull bugzilla-5000 into release branch
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/acpi_bus.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 8c7590fdd822..a2b3e390a503 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h @@ -26,7 +26,7 @@ #ifndef __ACPI_BUS_H__ #define __ACPI_BUS_H__ -#include <linux/kobject.h> +#include <linux/device.h> #include <acpi/acpi.h> @@ -169,7 +169,8 @@ struct acpi_device_flags { u32 power_manageable:1; u32 performance_manageable:1; u32 wake_capable:1; /* Wakeup(_PRW) supported? */ - u32 reserved:20; + u32 force_power_state:1; + u32 reserved:19; }; /* File System */ @@ -296,6 +297,7 @@ struct acpi_device { struct acpi_driver *driver; void *driver_data; struct kobject kobj; + struct device dev; }; #define acpi_driver_data(d) ((d)->driver_data) |