Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd3c7548 authored by Domenico Andreoli's avatar Domenico Andreoli Committed by Stephen Warren
Browse files

ARM: bcm2835: Add missing static modifiers



Add two missing static modifiers.

Signed-off-by: default avatarDomenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
parent 6f0c0580
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;