ARM: bcm2835: Add missing static modifiers
authorDomenico Andreoli <domenico.andreoli@linux.com>
Sat, 20 Oct 2012 01:35:27 +0000 (03:35 +0200)
committerStephen Warren <swarren@wwwdotorg.org>
Fri, 26 Oct 2012 02:28:10 +0000 (20:28 -0600)
Add two missing static modifiers.

Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
arch/arm/mach-bcm2835/bcm2835.c

index f6fea493357171fe362e8b4dbbdb75a6121ddf70..53e3842c93304c490c7110756a68ba55a78c249d 100644 (file)
@@ -30,12 +30,12 @@ static struct map_desc io_map __initdata = {
        .type = MT_DEVICE
 };
 
-void __init bcm2835_map_io(void)
+static void __init bcm2835_map_io(void)
 {
        iotable_init(&io_map, 1);
 }
 
-void __init bcm2835_init(void)
+static void __init bcm2835_init(void)
 {
        int ret;