mirror of https://gitee.com/openkylin/linux.git
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
|
@ -30,12 +30,12 @@ static struct map_desc io_map __initdata = {
|
||||||
.type = MT_DEVICE
|
.type = MT_DEVICE
|
||||||
};
|
};
|
||||||
|
|
||||||
void __init bcm2835_map_io(void)
|
static void __init bcm2835_map_io(void)
|
||||||
{
|
{
|
||||||
iotable_init(&io_map, 1);
|
iotable_init(&io_map, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void __init bcm2835_init(void)
|
static void __init bcm2835_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue