diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2016-01-28 16:20:49 +0100 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2016-02-19 06:45:31 +0100 |
commit | c58b31aa46b4c1197acd3503e8c07da79b6bc1c2 (patch) | |
tree | 192d0034b90055a71b0a03c4edc1be096fc5bd9a /arch/arm/mach-shmobile/smp-emev2.c | |
parent | ARM: shmobile: emev2: Remove legacy machine_desc.map_io() callback (diff) | |
download | linux-c58b31aa46b4c1197acd3503e8c07da79b6bc1c2.tar.xz linux-c58b31aa46b4c1197acd3503e8c07da79b6bc1c2.zip |
ARM: shmobile: emev2: Move declaration of emev2_smp_ops to emev2.h
make C=1:
arch/arm/mach-shmobile/smp-emev2.c:51:29: warning: symbol 'emev2_smp_ops' was not declared. Should it be static?
To fix this, move the forward declaration of emev2_smp_ops to a header
file, and include it where appropriate.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile/smp-emev2.c')
-rw-r--r-- | arch/arm/mach-shmobile/smp-emev2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/smp-emev2.c b/arch/arm/mach-shmobile/smp-emev2.c index adbac6963f2b..871220bf5870 100644 --- a/arch/arm/mach-shmobile/smp-emev2.c +++ b/arch/arm/mach-shmobile/smp-emev2.c @@ -21,7 +21,9 @@ #include <linux/delay.h> #include <asm/smp_plat.h> #include <asm/smp_scu.h> + #include "common.h" +#include "emev2.h" #define EMEV2_SCU_BASE 0x1e000000 #define EMEV2_SMU_BASE 0xe0110000 |