Commit 75d6137d authored by Jingoo Han's avatar Jingoo Han Committed by Daniel Lezcano

cpuidle: kirkwood: Make kirkwood_cpuidle_remove function static

This local symbol is used only in this file.
Fix the following sparse warnings:

drivers/cpuidle/cpuidle-kirkwood.c:73:5: warning: symbol 'kirkwood_cpuidle_remove' was not declared. Should it be static ?
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Acked-by: default avatarJason Cooper <jason@lakedaemon.net>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent 3e0c190d
...@@ -70,7 +70,7 @@ static int kirkwood_cpuidle_probe(struct platform_device *pdev) ...@@ -70,7 +70,7 @@ static int kirkwood_cpuidle_probe(struct platform_device *pdev)
return cpuidle_register(&kirkwood_idle_driver, NULL); return cpuidle_register(&kirkwood_idle_driver, NULL);
} }
int kirkwood_cpuidle_remove(struct platform_device *pdev) static int kirkwood_cpuidle_remove(struct platform_device *pdev)
{ {
cpuidle_unregister(&kirkwood_idle_driver); cpuidle_unregister(&kirkwood_idle_driver);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment