dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Domenico Andreoli 2012-10-20 03:35:27 +02:00 committed by Stephen Warren
parent 6f0c0580b7
commit dd3c7548b9
1 changed files with 2 additions and 2 deletions

View 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;