diff options
| author | Jisheng Zhang <jszhang@marvell.com> | 2013-11-07 04:02:38 -0500 |
|---|---|---|
| committer | Jason Cooper <jason@lakedaemon.net> | 2013-11-23 22:27:54 -0500 |
| commit | b12634e343bea9ce94ed3252fccbac347f8bb37f (patch) | |
| tree | 805f487c572a85129c2e5bcff56232a65503dc98 | |
| parent | 7805d2bdfe47151a1973f86bc98e1582523ecece (diff) | |
ARM: mvebu: fix some sparse warnings
This patch fixes conflicting types for 'set_cpu_coherent' and fixes the
following sparse warnings.
arch/arm/mach-mvebu/system-controller.c:42:38:
warning: symbol 'armada_370_xp_system_controller' was not declared. Should it be static?
arch/arm/mach-mvebu/system-controller.c:49:38:
warning: symbol 'orion_system_controller' was not declared. Should it be static?
arch/arm/mach-mvebu/system-controller.c:67:6:
warning: symbol 'mvebu_restart' was not declared. Should it be static?
arch/arm/mach-mvebu/coherency.c:31:15:
warning: symbol 'coherency_phys_base' was not declared. Should it be static?
arch/arm/mach-mvebu/coherency.c:48:5:
warning: symbol 'set_cpu_coherent' was not declared. Should it be static?
arch/arm/mach-mvebu/coherency.c:123:12:
warning: symbol 'coherency_init' was not declared. Should it be static?
arch/arm/mach-mvebu/pmsu.c:38:5: warning:
symbol 'armada_xp_boot_cpu' was not declared. Should it be static?
arch/arm/mach-mvebu/pmsu.c:61:12: warning:
symbol 'armada_370_xp_pmsu_init' was not declared. Should it be static?
arch/arm/mach-mvebu/platsmp.c:49:13: warning:
symbol 'set_secondary_cpus_clock' was not declared. Should it be static?
arch/arm/mach-mvebu/platsmp.c:97:13: warning:
symbol 'armada_xp_smp_prepare_cpus' was not declared. Should it be static?
arch/arm/mach-mvebu/hotplug.c:24:12: warning:
symbol 'armada_xp_cpu_die' was not declared. Should it be static?
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
| -rw-r--r-- | arch/arm/mach-mvebu/coherency.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/coherency.h | 4 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/common.h | 1 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/hotplug.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/platsmp.c | 4 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/pmsu.c | 3 | ||||
| -rw-r--r-- | arch/arm/mach-mvebu/system-controller.c | 5 |
7 files changed, 12 insertions, 7 deletions
diff --git a/arch/arm/mach-mvebu/coherency.c b/arch/arm/mach-mvebu/coherency.c index 58adf2fd9cfc..4e9d58148ca7 100644 --- a/arch/arm/mach-mvebu/coherency.c +++ b/arch/arm/mach-mvebu/coherency.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <asm/smp_plat.h> | 27 | #include <asm/smp_plat.h> |
| 28 | #include <asm/cacheflush.h> | 28 | #include <asm/cacheflush.h> |
| 29 | #include "armada-370-xp.h" | 29 | #include "armada-370-xp.h" |
| 30 | #include "coherency.h" | ||
| 30 | 31 | ||
| 31 | unsigned long coherency_phys_base; | 32 | unsigned long coherency_phys_base; |
| 32 | static void __iomem *coherency_base; | 33 | static void __iomem *coherency_base; |
diff --git a/arch/arm/mach-mvebu/coherency.h b/arch/arm/mach-mvebu/coherency.h index df33ad8a6c08..760226c41353 100644 --- a/arch/arm/mach-mvebu/coherency.h +++ b/arch/arm/mach-mvebu/coherency.h | |||
| @@ -14,7 +14,9 @@ | |||
| 14 | #ifndef __MACH_370_XP_COHERENCY_H | 14 | #ifndef __MACH_370_XP_COHERENCY_H |
| 15 | #define __MACH_370_XP_COHERENCY_H | 15 | #define __MACH_370_XP_COHERENCY_H |
| 16 | 16 | ||
| 17 | int set_cpu_coherent(int cpu_id, int smp_group_id); | 17 | extern unsigned long coherency_phys_base; |
| 18 | |||
| 19 | int set_cpu_coherent(unsigned int cpu_id, int smp_group_id); | ||
| 18 | int coherency_init(void); | 20 | int coherency_init(void); |
| 19 | 21 | ||
| 20 | #endif /* __MACH_370_XP_COHERENCY_H */ | 22 | #endif /* __MACH_370_XP_COHERENCY_H */ |
diff --git a/arch/arm/mach-mvebu/common.h b/arch/arm/mach-mvebu/common.h index e366010e1d91..0e6016fadcc5 100644 --- a/arch/arm/mach-mvebu/common.h +++ b/arch/arm/mach-mvebu/common.h | |||
| @@ -26,7 +26,6 @@ void armada_370_xp_handle_irq(struct pt_regs *regs); | |||
| 26 | 26 | ||
| 27 | void armada_xp_cpu_die(unsigned int cpu); | 27 | void armada_xp_cpu_die(unsigned int cpu); |
| 28 | int armada_370_xp_coherency_init(void); | 28 | int armada_370_xp_coherency_init(void); |
| 29 | int armada_370_xp_pmsu_init(void); | ||
| 30 | void armada_xp_secondary_startup(void); | 29 | void armada_xp_secondary_startup(void); |
| 31 | extern struct smp_operations armada_xp_smp_ops; | 30 | extern struct smp_operations armada_xp_smp_ops; |
| 32 | #endif | 31 | #endif |
diff --git a/arch/arm/mach-mvebu/hotplug.c b/arch/arm/mach-mvebu/hotplug.c index b228b6a80c85..d95e91047168 100644 --- a/arch/arm/mach-mvebu/hotplug.c +++ b/arch/arm/mach-mvebu/hotplug.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/errno.h> | 15 | #include <linux/errno.h> |
| 16 | #include <linux/smp.h> | 16 | #include <linux/smp.h> |
| 17 | #include <asm/proc-fns.h> | 17 | #include <asm/proc-fns.h> |
| 18 | #include "common.h" | ||
| 18 | 19 | ||
| 19 | /* | 20 | /* |
| 20 | * platform-specific code to shutdown a CPU | 21 | * platform-specific code to shutdown a CPU |
diff --git a/arch/arm/mach-mvebu/platsmp.c b/arch/arm/mach-mvebu/platsmp.c index ff69c2df298b..a6da03f5b24e 100644 --- a/arch/arm/mach-mvebu/platsmp.c +++ b/arch/arm/mach-mvebu/platsmp.c | |||
| @@ -46,7 +46,7 @@ static struct clk *__init get_cpu_clk(int cpu) | |||
| 46 | return cpu_clk; | 46 | return cpu_clk; |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | void __init set_secondary_cpus_clock(void) | 49 | static void __init set_secondary_cpus_clock(void) |
| 50 | { | 50 | { |
| 51 | int thiscpu, cpu; | 51 | int thiscpu, cpu; |
| 52 | unsigned long rate; | 52 | unsigned long rate; |
| @@ -94,7 +94,7 @@ static void __init armada_xp_smp_init_cpus(void) | |||
| 94 | set_smp_cross_call(armada_mpic_send_doorbell); | 94 | set_smp_cross_call(armada_mpic_send_doorbell); |
| 95 | } | 95 | } |
| 96 | 96 | ||
| 97 | void __init armada_xp_smp_prepare_cpus(unsigned int max_cpus) | 97 | static void __init armada_xp_smp_prepare_cpus(unsigned int max_cpus) |
| 98 | { | 98 | { |
| 99 | struct device_node *node; | 99 | struct device_node *node; |
| 100 | struct resource res; | 100 | struct resource res; |
diff --git a/arch/arm/mach-mvebu/pmsu.c b/arch/arm/mach-mvebu/pmsu.c index 27fc4f049474..d71ef53107c4 100644 --- a/arch/arm/mach-mvebu/pmsu.c +++ b/arch/arm/mach-mvebu/pmsu.c | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | #include <linux/smp.h> | 23 | #include <linux/smp.h> |
| 24 | #include <asm/smp_plat.h> | 24 | #include <asm/smp_plat.h> |
| 25 | #include "pmsu.h" | ||
| 25 | 26 | ||
| 26 | static void __iomem *pmsu_mp_base; | 27 | static void __iomem *pmsu_mp_base; |
| 27 | static void __iomem *pmsu_reset_base; | 28 | static void __iomem *pmsu_reset_base; |
| @@ -58,7 +59,7 @@ int armada_xp_boot_cpu(unsigned int cpu_id, void *boot_addr) | |||
| 58 | } | 59 | } |
| 59 | #endif | 60 | #endif |
| 60 | 61 | ||
| 61 | int __init armada_370_xp_pmsu_init(void) | 62 | static int __init armada_370_xp_pmsu_init(void) |
| 62 | { | 63 | { |
| 63 | struct device_node *np; | 64 | struct device_node *np; |
| 64 | 65 | ||
diff --git a/arch/arm/mach-mvebu/system-controller.c b/arch/arm/mach-mvebu/system-controller.c index 5175083cdb34..a7fb89a5b5d9 100644 --- a/arch/arm/mach-mvebu/system-controller.c +++ b/arch/arm/mach-mvebu/system-controller.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/of_address.h> | 27 | #include <linux/of_address.h> |
| 28 | #include <linux/io.h> | 28 | #include <linux/io.h> |
| 29 | #include <linux/reboot.h> | 29 | #include <linux/reboot.h> |
| 30 | #include "common.h" | ||
| 30 | 31 | ||
| 31 | static void __iomem *system_controller_base; | 32 | static void __iomem *system_controller_base; |
| 32 | 33 | ||
| @@ -39,14 +40,14 @@ struct mvebu_system_controller { | |||
| 39 | }; | 40 | }; |
| 40 | static struct mvebu_system_controller *mvebu_sc; | 41 | static struct mvebu_system_controller *mvebu_sc; |
| 41 | 42 | ||
| 42 | const struct mvebu_system_controller armada_370_xp_system_controller = { | 43 | static const struct mvebu_system_controller armada_370_xp_system_controller = { |
| 43 | .rstoutn_mask_offset = 0x60, | 44 | .rstoutn_mask_offset = 0x60, |
| 44 | .system_soft_reset_offset = 0x64, | 45 | .system_soft_reset_offset = 0x64, |
| 45 | .rstoutn_mask_reset_out_en = 0x1, | 46 | .rstoutn_mask_reset_out_en = 0x1, |
| 46 | .system_soft_reset = 0x1, | 47 | .system_soft_reset = 0x1, |
| 47 | }; | 48 | }; |
| 48 | 49 | ||
| 49 | const struct mvebu_system_controller orion_system_controller = { | 50 | static const struct mvebu_system_controller orion_system_controller = { |
| 50 | .rstoutn_mask_offset = 0x108, | 51 | .rstoutn_mask_offset = 0x108, |
| 51 | .system_soft_reset_offset = 0x10c, | 52 | .system_soft_reset_offset = 0x10c, |
| 52 | .rstoutn_mask_reset_out_en = 0x4, | 53 | .rstoutn_mask_reset_out_en = 0x4, |
