Skip to content

Commit

Permalink
ARM: mvebu: Use __init for the PM initialization functions
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Gregory CLEMENT committed Jul 25, 2015
1 parent 32f9494 commit bb253e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-mvebu/pm-board.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static void mvebu_armada_pm_enter(void __iomem *sdram_reg, u32 srcmd)
[ackcmd] "r" (ackcmd), [gpio_ctrl] "r" (gpio_ctrl) : "r1");
}

static int mvebu_armada_pm_init(void)
static int __init mvebu_armada_pm_init(void)
{
struct device_node *np;
struct device_node *gpio_ctrl_np;
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-mvebu/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static const struct platform_suspend_ops mvebu_pm_ops = {
.valid = suspend_valid_only_mem,
};

int mvebu_pm_init(void (*board_pm_enter)(void __iomem *sdram_reg, u32 srcmd))
int __init mvebu_pm_init(void (*board_pm_enter)(void __iomem *sdram_reg, u32 srcmd))
{
struct device_node *np;
struct resource res;
Expand Down

0 comments on commit bb253e7

Please sign in to comment.