diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2016-06-07 15:03:46 -0400 |
---|---|---|
committer | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2016-06-16 05:24:11 -0400 |
commit | 43043a55b27f4a1f249f43a863402d645786c9bc (patch) | |
tree | e1d24a1f9489689ff5643610b37d2c8a6f577eb3 | |
parent | 53e2fd837b21efaffcc67b5e77da72bd58025c3d (diff) |
mvebu: fix missing include of common.h in pm.c
The mvebu_pm_suspend_init() is missing a definition, so
include common.h which defines this function into pm.c to
fix the following warning:
arch/arm/mach-mvebu/pm.c:235:12: warning: symbol 'mvebu_pm_suspend_init' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
-rw-r--r-- | arch/arm/mach-mvebu/pm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/pm.c b/arch/arm/mach-mvebu/pm.c index 8d32bf762b86..2990c5269b18 100644 --- a/arch/arm/mach-mvebu/pm.c +++ b/arch/arm/mach-mvebu/pm.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/suspend.h> | 23 | #include <asm/suspend.h> |
24 | 24 | ||
25 | #include "coherency.h" | 25 | #include "coherency.h" |
26 | #include "common.h" | ||
26 | #include "pmsu.h" | 27 | #include "pmsu.h" |
27 | 28 | ||
28 | #define SDRAM_CONFIG_OFFS 0x0 | 29 | #define SDRAM_CONFIG_OFFS 0x0 |