diff options
-rw-r--r-- | arch/sh/kernel/cpu/shmobile/cpuidle.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/sh/kernel/cpu/shmobile/cpuidle.c b/arch/sh/kernel/cpu/shmobile/cpuidle.c index fdfe57f42b8c..d30622592116 100644 --- a/arch/sh/kernel/cpu/shmobile/cpuidle.c +++ b/arch/sh/kernel/cpu/shmobile/cpuidle.c | |||
@@ -51,7 +51,6 @@ static int cpuidle_sleep_enter(struct cpuidle_device *dev, | |||
51 | return k; | 51 | return k; |
52 | } | 52 | } |
53 | 53 | ||
54 | static struct cpuidle_device cpuidle_dev; | ||
55 | static struct cpuidle_driver cpuidle_driver = { | 54 | static struct cpuidle_driver cpuidle_driver = { |
56 | .name = "sh_idle", | 55 | .name = "sh_idle", |
57 | .owner = THIS_MODULE, | 56 | .owner = THIS_MODULE, |
@@ -100,9 +99,5 @@ int __init sh_mobile_setup_cpuidle(void) | |||
100 | if (sh_mobile_sleep_supported & SUSP_SH_STANDBY) | 99 | if (sh_mobile_sleep_supported & SUSP_SH_STANDBY) |
101 | cpuidle_driver.states[2].disabled = false; | 100 | cpuidle_driver.states[2].disabled = false; |
102 | 101 | ||
103 | ret = cpuidle_register_driver(&cpuidle_driver); | 102 | return cpuidle_register(&cpuidle_driver); |
104 | if (ret) | ||
105 | return ret; | ||
106 | |||
107 | return cpuidle_register_device(&cpuidle_dev); | ||
108 | } | 103 | } |