aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2011-01-06 23:35:10 +0100
committerLen Brown <len.brown@intel.com>2011-01-07 01:18:00 -0500
commit7fa69baf29de8c77a6b32c054df2abb8f11f8aa4 (patch)
treebecc4b300b74d3bd85ffdd0e536acf8554cf3872 /include/acpi
parentf2b56bc808addb908a5bf435d9b942c02af9a7c4 (diff)
downloadkernel_samsung_smdk4412-7fa69baf29de8c77a6b32c054df2abb8f11f8aa4.zip
kernel_samsung_smdk4412-7fa69baf29de8c77a6b32c054df2abb8f11f8aa4.tar.gz
kernel_samsung_smdk4412-7fa69baf29de8c77a6b32c054df2abb8f11f8aa4.tar.bz2
ACPI / PM: Drop special ACPI wakeup flags
Drop special ACPI wakeup flags, wakeup.state.enabled and wakeup.flags.always_enabled, that aren't necessary any more after we've started to use standard device wakeup flags for handling ACPI wakeup devices. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/acpi_bus.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index 359ef11..f2499f5 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -242,20 +242,14 @@ struct acpi_device_perf {
struct acpi_device_wakeup_flags {
u8 valid:1; /* Can successfully enable wakeup? */
u8 run_wake:1; /* Run-Wake GPE devices */
- u8 always_enabled:1; /* Run-wake devices that are always enabled */
u8 notifier_present:1; /* Wake-up notify handler has been installed */
};
-struct acpi_device_wakeup_state {
- u8 enabled:1;
-};
-
struct acpi_device_wakeup {
acpi_handle gpe_device;
u64 gpe_number;
u64 sleep_state;
struct acpi_handle_list resources;
- struct acpi_device_wakeup_state state;
struct acpi_device_wakeup_flags flags;
int prepare_count;
int run_wake_count;