Skip to content

Commit

Permalink
ARM: bcm2835: Add missing static modifiers
Browse files Browse the repository at this point in the history
Add two missing static modifiers.

Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
  • Loading branch information
Domenico Andreoli authored and Stephen Warren committed Oct 26, 2012
1 parent 6f0c058 commit dd3c754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-bcm2835/bcm2835.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit dd3c754

Please sign in to comment.