diff options
author | Len Brown <len.brown@intel.com> | 2008-10-23 00:45:18 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-10-23 00:45:18 -0400 |
commit | b849075c0e08ea43400c1341c78eeca76ab08d8a (patch) | |
tree | e989289c8315f5dd727068e1b4fea2039b3d9998 /drivers/acpi/sleep/main.c | |
parent | eb83f493ab9f8bd09fb7a99ae6ae565e92470491 (diff) |
ACPI suspend: fix build warning when CONFIG_ACPI_SLEEP=n
drivers/acpi/sleep/main.c:27: warning: ‘acpi_target_sleep_state’ defined but not used
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/sleep/main.c')
-rw-r--r-- | drivers/acpi/sleep/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/sleep/main.c b/drivers/acpi/sleep/main.c index 76037883cd13..26571bafb158 100644 --- a/drivers/acpi/sleep/main.c +++ b/drivers/acpi/sleep/main.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include "sleep.h" | 24 | #include "sleep.h" |
25 | 25 | ||
26 | u8 sleep_states[ACPI_S_STATE_COUNT]; | 26 | u8 sleep_states[ACPI_S_STATE_COUNT]; |
27 | static u32 acpi_target_sleep_state = ACPI_STATE_S0; | ||
28 | 27 | ||
29 | static void acpi_sleep_tts_switch(u32 acpi_state) | 28 | static void acpi_sleep_tts_switch(u32 acpi_state) |
30 | { | 29 | { |
@@ -78,6 +77,7 @@ static int acpi_sleep_prepare(u32 acpi_state) | |||
78 | } | 77 | } |
79 | 78 | ||
80 | #ifdef CONFIG_ACPI_SLEEP | 79 | #ifdef CONFIG_ACPI_SLEEP |
80 | static u32 acpi_target_sleep_state = ACPI_STATE_S0; | ||
81 | /* | 81 | /* |
82 | * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the | 82 | * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the |
83 | * user to request that behavior by using the 'acpi_old_suspend_ordering' | 83 | * user to request that behavior by using the 'acpi_old_suspend_ordering' |