diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-07-03 07:55:50 -0400 |
---|---|---|
committer | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-07-25 11:16:57 -0400 |
commit | bb253e743affa9d0053add8d3a1089df82f1c854 (patch) | |
tree | 37a2a545f94b39255ef6ea8fc6e3d1c513d86465 | |
parent | 32f9494c9dfd7494721b314897008dcde6415cb3 (diff) |
ARM: mvebu: Use __init for the PM initialization functions
mvebu_pm_init and mvebu_armada_pm_init are only called during boot, so
flag them with __init and save some memory.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | arch/arm/mach-mvebu/pm-board.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-mvebu/pm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mvebu/pm-board.c b/arch/arm/mach-mvebu/pm-board.c index b8c26cb3a27f..3ab06e7252c3 100644 --- a/arch/arm/mach-mvebu/pm-board.c +++ b/arch/arm/mach-mvebu/pm-board.c | |||
@@ -76,7 +76,7 @@ static void mvebu_armada_pm_enter(void __iomem *sdram_reg, u32 srcmd) | |||
76 | [ackcmd] "r" (ackcmd), [gpio_ctrl] "r" (gpio_ctrl) : "r1"); | 76 | [ackcmd] "r" (ackcmd), [gpio_ctrl] "r" (gpio_ctrl) : "r1"); |
77 | } | 77 | } |
78 | 78 | ||
79 | static int mvebu_armada_pm_init(void) | 79 | static int __init mvebu_armada_pm_init(void) |
80 | { | 80 | { |
81 | struct device_node *np; | 81 | struct device_node *np; |
82 | struct device_node *gpio_ctrl_np; | 82 | struct device_node *gpio_ctrl_np; |
diff --git a/arch/arm/mach-mvebu/pm.c b/arch/arm/mach-mvebu/pm.c index 02fdf67a4898..ca94f07407f1 100644 --- a/arch/arm/mach-mvebu/pm.c +++ b/arch/arm/mach-mvebu/pm.c | |||
@@ -194,7 +194,7 @@ static const struct platform_suspend_ops mvebu_pm_ops = { | |||
194 | .valid = suspend_valid_only_mem, | 194 | .valid = suspend_valid_only_mem, |
195 | }; | 195 | }; |
196 | 196 | ||
197 | int mvebu_pm_init(void (*board_pm_enter)(void __iomem *sdram_reg, u32 srcmd)) | 197 | int __init mvebu_pm_init(void (*board_pm_enter)(void __iomem *sdram_reg, u32 srcmd)) |
198 | { | 198 | { |
199 | struct device_node *np; | 199 | struct device_node *np; |
200 | struct resource res; | 200 | struct resource res; |