diff options
author | Domenico Andreoli <domenico.andreoli@linux.com> | 2012-10-19 21:35:27 -0400 |
---|---|---|
committer | Stephen Warren <swarren@wwwdotorg.org> | 2012-10-25 22:28:10 -0400 |
commit | dd3c7548b98bcefd3b21a9c3a2b1d584933467cc (patch) | |
tree | 692b19976c6b29e5869da0b3839ec231226e2c73 /arch/arm/mach-bcm2835/bcm2835.c | |
parent | 6f0c0580b70c89094b3422ba81118c7b959c7556 (diff) |
ARM: bcm2835: Add missing static modifiers
Add two missing static modifiers.
Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'arch/arm/mach-bcm2835/bcm2835.c')
-rw-r--r-- | arch/arm/mach-bcm2835/bcm2835.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-bcm2835/bcm2835.c b/arch/arm/mach-bcm2835/bcm2835.c index f6fea4933571..53e3842c9330 100644 --- a/arch/arm/mach-bcm2835/bcm2835.c +++ b/arch/arm/mach-bcm2835/bcm2835.c | |||
@@ -30,12 +30,12 @@ static struct map_desc io_map __initdata = { | |||
30 | .type = MT_DEVICE | 30 | .type = MT_DEVICE |
31 | }; | 31 | }; |
32 | 32 | ||
33 | void __init bcm2835_map_io(void) | 33 | static void __init bcm2835_map_io(void) |
34 | { | 34 | { |
35 | iotable_init(&io_map, 1); | 35 | iotable_init(&io_map, 1); |
36 | } | 36 | } |
37 | 37 | ||
38 | void __init bcm2835_init(void) | 38 | static void __init bcm2835_init(void) |
39 | { | 39 | { |
40 | int ret; | 40 | int ret; |
41 | 41 | ||