Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c78e4360 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Daniel Lezcano
Browse files

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 b181a3b0 ("SH:
cpuidle: use init/exit common routine").

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent d4e4ab86
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -91,13 +91,11 @@ static struct cpuidle_driver cpuidle_driver = {

int __init sh_mobile_setup_cpuidle(void)
{
	int ret;

	if (sh_mobile_sleep_supported & SUSP_SH_SF)
		cpuidle_driver.states[1].disabled = false;

	if (sh_mobile_sleep_supported & SUSP_SH_STANDBY)
		cpuidle_driver.states[2].disabled = false;

	return cpuidle_register(&cpuidle_driver);
	return cpuidle_register(&cpuidle_driver, NULL);
}