aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/acpi/sleep/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/sleep/main.c b/drivers/acpi/sleep/main.c
index 5055acf2163c..3271850a1f35 100644
--- a/drivers/acpi/sleep/main.c
+++ b/drivers/acpi/sleep/main.c
@@ -50,7 +50,7 @@ int acpi_sleep_prepare(u32 acpi_state)
50} 50}
51 51
52#ifdef CONFIG_SUSPEND 52#ifdef CONFIG_SUSPEND
53static struct pm_ops acpi_pm_ops; 53static struct platform_suspend_ops acpi_pm_ops;
54 54
55extern void do_suspend_lowlevel(void); 55extern void do_suspend_lowlevel(void);
56 56
@@ -203,7 +203,7 @@ static int acpi_pm_state_valid(suspend_state_t pm_state)
203 } 203 }
204} 204}
205 205
206static struct pm_ops acpi_pm_ops = { 206static struct platform_suspend_ops acpi_pm_ops = {
207 .valid = acpi_pm_state_valid, 207 .valid = acpi_pm_state_valid,
208 .set_target = acpi_pm_set_target, 208 .set_target = acpi_pm_set_target,
209 .prepare = acpi_pm_prepare, 209 .prepare = acpi_pm_prepare,
@@ -417,7 +417,7 @@ int __init acpi_sleep_init(void)
417 } 417 }
418 } 418 }
419 419
420 pm_set_ops(&acpi_pm_ops); 420 suspend_set_ops(&acpi_pm_ops);
421#endif 421#endif
422 422
423#ifdef CONFIG_HIBERNATION 423#ifdef CONFIG_HIBERNATION