Commit c78e43601b8f6d06bd92753e5f4ae51e4d6a1284

Authored by Geert Uytterhoeven
Committed by Daniel Lezcano
1 parent d4e4ab86bc

SH: cpuidle: Add missing parameter for cpuidle_register()

arch/sh/kernel/cpu/shmobile/cpuidle.c: In function 'sh_mobile_setup_cpuidle':
arch/sh/kernel/cpu/shmobile/cpuidle.c:102:2: error: too few arguments to function 'cpuidle_register'
include/linux/cpuidle.h:129:12: note: declared here
arch/sh/kernel/cpu/shmobile/cpuidle.c:94:6: warning: unused variable 'ret' [-Wunused-variable]

Add the missing parameter, and remove the unused variable.

Both introduced by commit b181a3b03f866776211f22390c185c4da1dc45ff ("SH:
cpuidle: use init/exit common routine").

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>

Showing 1 changed file with 1 additions and 3 deletions Side-by-side Diff

arch/sh/kernel/cpu/shmobile/cpuidle.c
... ... @@ -91,14 +91,12 @@
91 91  
92 92 int __init sh_mobile_setup_cpuidle(void)
93 93 {
94   - int ret;
95   -
96 94 if (sh_mobile_sleep_supported & SUSP_SH_SF)
97 95 cpuidle_driver.states[1].disabled = false;
98 96  
99 97 if (sh_mobile_sleep_supported & SUSP_SH_STANDBY)
100 98 cpuidle_driver.states[2].disabled = false;
101 99  
102   - return cpuidle_register(&cpuidle_driver);
  100 + return cpuidle_register(&cpuidle_driver, NULL);
103 101 }