aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/sama5.c
diff options
context:
space:
mode:
authorNicolas Ferre <nicolas.ferre@atmel.com>2015-01-27 12:41:33 -0500
committerNicolas Ferre <nicolas.ferre@atmel.com>2015-02-02 05:01:29 -0500
commitad3fc3e316891cbc4f33116a61c57c4a9b2a2518 (patch)
tree614117b36ff439e4c49893abc740c8b2a6d142b1 /arch/arm/mach-at91/sama5.c
parent827de1f123ba0880033d1b5299e116470e19bafb (diff)
ARM: at91/trivial: unify functions and machine names
Remove the string "(Device Tree)" after the machine name because all AT91 machines use the DT nowadays. Also change some function names to unify following the convention: - at91sam9xxx aren't named sam9, 9xxx but with the full name - sama5 are the ones that don't have the at91 prefix anymore. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/sama5.c')
-rw-r--r--arch/arm/mach-at91/sama5.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-at91/sama5.c b/arch/arm/mach-at91/sama5.c
index 9816ef0f203d..03dcb441f3d2 100644
--- a/arch/arm/mach-at91/sama5.c
+++ b/arch/arm/mach-at91/sama5.c
@@ -49,7 +49,7 @@ static void __init sama5_dt_device_init(void)
49 } 49 }
50 50
51 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); 51 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
52 at91_sam9x5_pm_init(); 52 at91sam9x5_pm_init();
53} 53}
54 54
55static const char *sama5_dt_board_compat[] __initconst = { 55static const char *sama5_dt_board_compat[] __initconst = {
@@ -57,7 +57,7 @@ static const char *sama5_dt_board_compat[] __initconst = {
57 NULL 57 NULL
58}; 58};
59 59
60DT_MACHINE_START(sama5_dt, "Atmel SAMA5 (Device Tree)") 60DT_MACHINE_START(sama5_dt, "Atmel SAMA5")
61 /* Maintainer: Atmel */ 61 /* Maintainer: Atmel */
62 .map_io = at91_map_io, 62 .map_io = at91_map_io,
63 .init_machine = sama5_dt_device_init, 63 .init_machine = sama5_dt_device_init,
@@ -102,7 +102,7 @@ static const char *sama5_alt_dt_board_compat[] __initconst = {
102 NULL 102 NULL
103}; 103};
104 104
105DT_MACHINE_START(sama5_alt_dt, "Atmel SAMA5 (Device Tree)") 105DT_MACHINE_START(sama5_alt_dt, "Atmel SAMA5")
106 /* Maintainer: Atmel */ 106 /* Maintainer: Atmel */
107 .map_io = sama5_alt_map_io, 107 .map_io = sama5_alt_map_io,
108 .init_machine = sama5_dt_device_init, 108 .init_machine = sama5_dt_device_init,