aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/sleep.c
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2010-10-18 21:47:25 -0400
committerLen Brown <len.brown@intel.com>2010-10-19 13:44:37 -0400
commit01eac60bccdb0ce49a2937d59da1e4749697a9aa (patch)
tree81e069fa25942b058dcf6a64e14b1b184566e51b /drivers/acpi/sleep.c
parent5ba8b1c6fe40c314a02e28553c25552d8f1442e7 (diff)
ACPI: static sleep_states[] and acpi_gts_bfs_check
Only used in one file so should be static. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/sleep.c')
-rw-r--r--drivers/acpi/sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c
index 4754ff6e70e6..b9af2c2ff926 100644
--- a/drivers/acpi/sleep.c
+++ b/drivers/acpi/sleep.c
@@ -25,7 +25,7 @@
25#include "internal.h" 25#include "internal.h"
26#include "sleep.h" 26#include "sleep.h"
27 27
28u8 sleep_states[ACPI_S_STATE_COUNT]; 28static u8 sleep_states[ACPI_S_STATE_COUNT];
29 29
30static void acpi_sleep_tts_switch(u32 acpi_state) 30static void acpi_sleep_tts_switch(u32 acpi_state)
31{ 31{
@@ -702,7 +702,7 @@ static void acpi_power_off(void)
702 * paths through the BIOS, so disable _GTS and _BFS by default, 702 * paths through the BIOS, so disable _GTS and _BFS by default,
703 * but do speak up and offer the option to enable them. 703 * but do speak up and offer the option to enable them.
704 */ 704 */
705void __init acpi_gts_bfs_check(void) 705static void __init acpi_gts_bfs_check(void)
706{ 706{
707 acpi_handle dummy; 707 acpi_handle dummy;
708 708