diff mbox

[1/2] ARM: bcm2835: Add missing static modifiers

Message ID 20121020013756.779089206@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Domenico Andreoli Oct. 20, 2012, 1:35 a.m. UTC
From: Domenico Andreoli <domenico.andreoli@linux.com>

Add two missing static modifiers.

Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: linux-arm-kernel@lists.infradead.org
---
 arch/arm/mach-bcm2835/bcm2835.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Stephen Warren Oct. 26, 2012, 2:46 a.m. UTC | #1
> Add two missing static modifiers.

Thanks, the series is applied to linux-rpi's for-3.8/cleanup branch.
diff mbox

Patch

Index: b/arch/arm/mach-bcm2835/bcm2835.c
===================================================================
--- 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
 	.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;