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:
parent
6f0c0580b7
commit
dd3c7548b9
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue