diff options
Diffstat (limited to 'arch/arm/mach-bcm2835')
| -rw-r--r-- | arch/arm/mach-bcm2835/Makefile.boot | 4 | ||||
| -rw-r--r-- | arch/arm/mach-bcm2835/bcm2835.c | 4 | 
2 files changed, 3 insertions, 5 deletions
diff --git a/arch/arm/mach-bcm2835/Makefile.boot b/arch/arm/mach-bcm2835/Makefile.boot index 2d30e17f5b6..b3271754e9f 100644 --- a/arch/arm/mach-bcm2835/Makefile.boot +++ b/arch/arm/mach-bcm2835/Makefile.boot @@ -1,3 +1 @@ -   zreladdr-y := 0x00008000 -params_phys-y := 0x00000100 -initrd_phys-y := 0x00800000 +zreladdr-y := 0x00008000 diff --git a/arch/arm/mach-bcm2835/bcm2835.c b/arch/arm/mach-bcm2835/bcm2835.c index f6fea493357..53e3842c933 100644 --- a/arch/arm/mach-bcm2835/bcm2835.c +++ b/arch/arm/mach-bcm2835/bcm2835.c @@ -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;  |