diff options
-rw-r--r-- | arch/ia64/include/asm/acpi.h | 4 | ||||
-rw-r--r-- | arch/ia64/kernel/acpi.c | 5 | ||||
-rw-r--r-- | arch/x86/include/asm/acpi.h | 3 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/sleep.c | 8 | ||||
-rw-r--r-- | drivers/acpi/sleep.c | 4 |
5 files changed, 3 insertions, 21 deletions
diff --git a/arch/ia64/include/asm/acpi.h b/arch/ia64/include/asm/acpi.h index 837dc82a013e..db3986a71af8 100644 --- a/arch/ia64/include/asm/acpi.h +++ b/arch/ia64/include/asm/acpi.h | |||
@@ -128,9 +128,9 @@ static inline const char *acpi_get_sysname (void) | |||
128 | int acpi_request_vector (u32 int_type); | 128 | int acpi_request_vector (u32 int_type); |
129 | int acpi_gsi_to_irq (u32 gsi, unsigned int *irq); | 129 | int acpi_gsi_to_irq (u32 gsi, unsigned int *irq); |
130 | 130 | ||
131 | /* routines for saving/restoring kernel state */ | 131 | /* Routine for saving kernel state during suspend. */ |
132 | extern int acpi_save_state_mem(void); | 132 | extern int acpi_save_state_mem(void); |
133 | extern void acpi_restore_state_mem(void); | 133 | |
134 | extern unsigned long acpi_wakeup_address; | 134 | extern unsigned long acpi_wakeup_address; |
135 | 135 | ||
136 | /* | 136 | /* |
diff --git a/arch/ia64/kernel/acpi.c b/arch/ia64/kernel/acpi.c index 90ebceb899a0..7cf2d10c0677 100644 --- a/arch/ia64/kernel/acpi.c +++ b/arch/ia64/kernel/acpi.c | |||
@@ -1041,11 +1041,6 @@ EXPORT_SYMBOL(acpi_unregister_ioapic); | |||
1041 | int acpi_save_state_mem(void) { return 0; } | 1041 | int acpi_save_state_mem(void) { return 0; } |
1042 | 1042 | ||
1043 | /* | 1043 | /* |
1044 | * acpi_restore_state() | ||
1045 | */ | ||
1046 | void acpi_restore_state_mem(void) {} | ||
1047 | |||
1048 | /* | ||
1049 | * do_suspend_lowlevel() | 1044 | * do_suspend_lowlevel() |
1050 | */ | 1045 | */ |
1051 | void do_suspend_lowlevel(void) {} | 1046 | void do_suspend_lowlevel(void) {} |
diff --git a/arch/x86/include/asm/acpi.h b/arch/x86/include/asm/acpi.h index 211ca3f7fd16..47981f0d121b 100644 --- a/arch/x86/include/asm/acpi.h +++ b/arch/x86/include/asm/acpi.h | |||
@@ -112,9 +112,8 @@ static inline void acpi_disable_pci(void) | |||
112 | acpi_noirq_set(); | 112 | acpi_noirq_set(); |
113 | } | 113 | } |
114 | 114 | ||
115 | /* routines for saving/restoring kernel state */ | 115 | /* Routine for saving kernel state during suspend. */ |
116 | extern int acpi_save_state_mem(void); | 116 | extern int acpi_save_state_mem(void); |
117 | extern void acpi_restore_state_mem(void); | ||
118 | 117 | ||
119 | extern unsigned long acpi_wakeup_address; | 118 | extern unsigned long acpi_wakeup_address; |
120 | 119 | ||
diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c index 68d1537b8c81..c27a483094b1 100644 --- a/arch/x86/kernel/acpi/sleep.c +++ b/arch/x86/kernel/acpi/sleep.c | |||
@@ -110,14 +110,6 @@ int acpi_save_state_mem(void) | |||
110 | return 0; | 110 | return 0; |
111 | } | 111 | } |
112 | 112 | ||
113 | /* | ||
114 | * acpi_restore_state - undo effects of acpi_save_state_mem | ||
115 | */ | ||
116 | void acpi_restore_state_mem(void) | ||
117 | { | ||
118 | } | ||
119 | |||
120 | |||
121 | /** | 113 | /** |
122 | * acpi_reserve_wakeup_memory - do _very_ early ACPI initialisation | 114 | * acpi_reserve_wakeup_memory - do _very_ early ACPI initialisation |
123 | * | 115 | * |
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index d6a8cd14de2e..67dcd3886563 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
@@ -293,10 +293,6 @@ static int acpi_suspend_enter(suspend_state_t pm_state) | |||
293 | local_irq_restore(flags); | 293 | local_irq_restore(flags); |
294 | printk(KERN_DEBUG "Back to C!\n"); | 294 | printk(KERN_DEBUG "Back to C!\n"); |
295 | 295 | ||
296 | /* restore processor state */ | ||
297 | if (acpi_state == ACPI_STATE_S3) | ||
298 | acpi_restore_state_mem(); | ||
299 | |||
300 | suspend_nvs_restore(); | 296 | suspend_nvs_restore(); |
301 | 297 | ||
302 | return ACPI_SUCCESS(status) ? 0 : -EFAULT; | 298 | return ACPI_SUCCESS(status) ? 0 : -EFAULT; |