diff options
author | Wenyou Yang <wenyou.yang@atmel.com> | 2015-03-03 20:44:45 -0500 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2015-03-12 10:30:38 -0400 |
commit | 047794e13632f177e864eba6160cecfbf3875cbe (patch) | |
tree | a67b81f6a33ba17670d20d563096721cc6da9351 | |
parent | 936748fd34be484c8638a8547b4ca85afdfdf3a6 (diff) |
ARM: at91: pm: change at91_pm_set_standby() to static
Since at91_pm_set_standby() will not be used out of the pm.c file,
change its attribute from extern to static, remove its declaration as well.
Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
-rw-r--r-- | arch/arm/mach-at91/pm.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/pm.h | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index aa4116e9452f..a4473dcd0f7c 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c | |||
@@ -218,7 +218,7 @@ static struct platform_device at91_cpuidle_device = { | |||
218 | .name = "cpuidle-at91", | 218 | .name = "cpuidle-at91", |
219 | }; | 219 | }; |
220 | 220 | ||
221 | void at91_pm_set_standby(void (*at91_standby)(void)) | 221 | static void at91_pm_set_standby(void (*at91_standby)(void)) |
222 | { | 222 | { |
223 | if (at91_standby) { | 223 | if (at91_standby) { |
224 | at91_cpuidle_device.dev.platform_data = at91_standby; | 224 | at91_cpuidle_device.dev.platform_data = at91_standby; |
diff --git a/arch/arm/mach-at91/pm.h b/arch/arm/mach-at91/pm.h index 86c0aa819d25..86a9d0b91814 100644 --- a/arch/arm/mach-at91/pm.h +++ b/arch/arm/mach-at91/pm.h | |||
@@ -15,12 +15,6 @@ | |||
15 | 15 | ||
16 | #include <mach/at91_ramc.h> | 16 | #include <mach/at91_ramc.h> |
17 | 17 | ||
18 | #ifdef CONFIG_PM | ||
19 | extern void at91_pm_set_standby(void (*at91_standby)(void)); | ||
20 | #else | ||
21 | static inline void at91_pm_set_standby(void (*at91_standby)(void)) { } | ||
22 | #endif | ||
23 | |||
24 | /* | 18 | /* |
25 | * The AT91RM9200 goes into self-refresh mode with this command, and will | 19 | * The AT91RM9200 goes into self-refresh mode with this command, and will |
26 | * terminate self-refresh automatically on the next SDRAM access. | 20 | * terminate self-refresh automatically on the next SDRAM access. |