aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mayer <markus.mayer@linaro.org>2014-02-25 17:17:46 -0500
committerMatt Porter <mporter@linaro.org>2014-03-06 03:18:01 -0500
commit0e8b860ac6d65209beea03ee9b718089838476ef (patch)
tree57a2d819791c874b39c391f1af7bb13f344aba34
parent389df03610d8a8b1263ba222175eb6fba228c186 (diff)
ARM: bcm281xx: Rename board_init() function
Rename board_init() to bcm281xx_init(), so the name reflects the board specific nature of this function. Signed-off-by: Markus Mayer <markus.mayer@linaro.org> Signed-off-by: Matt Porter <mporter@linaro.org>
-rw-r--r--arch/arm/mach-bcm/board_bcm281xx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-bcm/board_bcm281xx.c b/arch/arm/mach-bcm/board_bcm281xx.c
index 0335c3ad2966..6be54c10f8cb 100644
--- a/arch/arm/mach-bcm/board_bcm281xx.c
+++ b/arch/arm/mach-bcm/board_bcm281xx.c
@@ -56,7 +56,7 @@ static void bcm281xx_restart(enum reboot_mode mode, const char *cmd)
56 while (1); 56 while (1);
57} 57}
58 58
59static void __init board_init(void) 59static void __init bcm281xx_init(void)
60{ 60{
61 of_platform_populate(NULL, of_default_bus_match_table, NULL, 61 of_platform_populate(NULL, of_default_bus_match_table, NULL,
62 &platform_bus); 62 &platform_bus);
@@ -69,7 +69,7 @@ static const char * const bcm281xx_dt_compat[] = {
69}; 69};
70 70
71DT_MACHINE_START(BCM281XX_DT, "BCM281xx Broadcom Application Processor") 71DT_MACHINE_START(BCM281XX_DT, "BCM281xx Broadcom Application Processor")
72 .init_machine = board_init, 72 .init_machine = bcm281xx_init,
73 .restart = bcm281xx_restart, 73 .restart = bcm281xx_restart,
74 .dt_compat = bcm281xx_dt_compat, 74 .dt_compat = bcm281xx_dt_compat,
75MACHINE_END 75MACHINE_END