diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-05-28 05:26:04 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-07-10 04:37:42 -0400 |
commit | 0d01ab3aa47a99a218b2e3a1ae13dc5d20d061b6 (patch) | |
tree | 504bb42fabe4d08f03c62edb5d8d420c383a7bd7 /arch/arm/mach-ux500 | |
parent | 51fe0057cd866d7c1c0c82f722b7cbe429a75b85 (diff) |
ARM: ux500: Staticize local symbols in cpu-db8500.c
Symbols local to this file are made static.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/mach-ux500')
-rw-r--r-- | arch/arm/mach-ux500/cpu-db8500.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-ux500/cpu-db8500.c b/arch/arm/mach-ux500/cpu-db8500.c index fa308f07fae5..6f63954c8bde 100644 --- a/arch/arm/mach-ux500/cpu-db8500.c +++ b/arch/arm/mach-ux500/cpu-db8500.c | |||
@@ -33,11 +33,11 @@ | |||
33 | #include "db8500-regs.h" | 33 | #include "db8500-regs.h" |
34 | #include "id.h" | 34 | #include "id.h" |
35 | 35 | ||
36 | struct ab8500_platform_data ab8500_platdata = { | 36 | static struct ab8500_platform_data ab8500_platdata = { |
37 | .regulator = &ab8500_regulator_plat_data, | 37 | .regulator = &ab8500_regulator_plat_data, |
38 | }; | 38 | }; |
39 | 39 | ||
40 | struct prcmu_pdata db8500_prcmu_pdata = { | 40 | static struct prcmu_pdata db8500_prcmu_pdata = { |
41 | .ab_platdata = &ab8500_platdata, | 41 | .ab_platdata = &ab8500_platdata, |
42 | .version_offset = DB8500_PRCMU_FW_VERSION_OFFSET, | 42 | .version_offset = DB8500_PRCMU_FW_VERSION_OFFSET, |
43 | .legacy_offset = DB8500_PRCMU_LEGACY_OFFSET, | 43 | .legacy_offset = DB8500_PRCMU_LEGACY_OFFSET, |
@@ -82,7 +82,7 @@ static struct map_desc u9540_io_desc[] __initdata = { | |||
82 | __IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K + SZ_8K), | 82 | __IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K + SZ_8K), |
83 | }; | 83 | }; |
84 | 84 | ||
85 | void __init u8500_map_io(void) | 85 | static void __init u8500_map_io(void) |
86 | { | 86 | { |
87 | /* | 87 | /* |
88 | * Map the UARTs early so that the DEBUG_LL stuff continues to work. | 88 | * Map the UARTs early so that the DEBUG_LL stuff continues to work. |
@@ -119,7 +119,7 @@ static irqreturn_t db8500_pmu_handler(int irq, void *dev, irq_handler_t handler) | |||
119 | return ret; | 119 | return ret; |
120 | } | 120 | } |
121 | 121 | ||
122 | struct arm_pmu_platdata db8500_pmu_platdata = { | 122 | static struct arm_pmu_platdata db8500_pmu_platdata = { |
123 | .handle_irq = db8500_pmu_handler, | 123 | .handle_irq = db8500_pmu_handler, |
124 | }; | 124 | }; |
125 | 125 | ||