diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-04-03 08:15:15 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-04-08 16:20:05 -0400 |
commit | d50470979090bb5fa6c198d0ef87276658deb5f9 (patch) | |
tree | 7af82cfa3be8b1fed483bbbb27b6cc99628f7ae3 /arch/arm/mach-shmobile/cpuidle.c | |
parent | b6269efb146eb8770d753e3dc1c561f1cffb631a (diff) |
ARM: shmobile: pm: fix init sections
Add the __init section for the functions which are called
at init time.
Signed-off-by: Daniel Lezcano <daniel.linaro.org>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'arch/arm/mach-shmobile/cpuidle.c')
-rw-r--r-- | arch/arm/mach-shmobile/cpuidle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/cpuidle.c b/arch/arm/mach-shmobile/cpuidle.c index 9e050268cde4..068f9ca8715f 100644 --- a/arch/arm/mach-shmobile/cpuidle.c +++ b/arch/arm/mach-shmobile/cpuidle.c | |||
@@ -36,12 +36,12 @@ static struct cpuidle_driver shmobile_cpuidle_default_driver = { | |||
36 | 36 | ||
37 | static struct cpuidle_driver *cpuidle_drv = &shmobile_cpuidle_default_driver; | 37 | static struct cpuidle_driver *cpuidle_drv = &shmobile_cpuidle_default_driver; |
38 | 38 | ||
39 | void shmobile_cpuidle_set_driver(struct cpuidle_driver *drv) | 39 | void __init shmobile_cpuidle_set_driver(struct cpuidle_driver *drv) |
40 | { | 40 | { |
41 | cpuidle_drv = drv; | 41 | cpuidle_drv = drv; |
42 | } | 42 | } |
43 | 43 | ||
44 | int shmobile_cpuidle_init(void) | 44 | int __init shmobile_cpuidle_init(void) |
45 | { | 45 | { |
46 | struct cpuidle_device *dev = &shmobile_cpuidle_dev; | 46 | struct cpuidle_device *dev = &shmobile_cpuidle_dev; |
47 | 47 | ||