aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2012-10-15 03:49:33 -0400
committerLee Jones <lee.jones@linaro.org>2012-11-01 08:02:23 -0400
commit58e5b9e3d0b5e1319fd24124e79b4d4e6188bf1b (patch)
tree8825060303cda85bfe4a5cdaa967c8beb7da320a
parenta37e84ca31f4354373fe9a930d80566d6833a877 (diff)
ARM: ux500: Rename references to the ccu9540 dev board accordingly
When enabling ST-Ericsson's ccu9540 development board the board's full name has not been used. This patch adapts all references of the board's short name to how it should be referenced. Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--arch/arm/boot/dts/ccu9540.dts (renamed from arch/arm/boot/dts/u9540.dts)4
-rw-r--r--arch/arm/mach-ux500/cpu-db8500.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/boot/dts/u9540.dts b/arch/arm/boot/dts/ccu9540.dts
index 95892ec6c342..26dfe83178be 100644
--- a/arch/arm/boot/dts/u9540.dts
+++ b/arch/arm/boot/dts/ccu9540.dts
@@ -13,8 +13,8 @@
13/include/ "dbx5x0.dtsi" 13/include/ "dbx5x0.dtsi"
14 14
15/ { 15/ {
16 model = "ST-Ericsson U9540 platform with Device Tree"; 16 model = "ST-Ericsson CCU9540 platform with Device Tree";
17 compatible = "st-ericsson,u9540"; 17 compatible = "st-ericsson,ccu9540";
18 18
19 memory { 19 memory {
20 reg = <0x00000000 0x20000000>; 20 reg = <0x00000000 0x20000000>;
diff --git a/arch/arm/mach-ux500/cpu-db8500.c b/arch/arm/mach-ux500/cpu-db8500.c
index 0b15591a087d..6e9a06d693a6 100644
--- a/arch/arm/mach-ux500/cpu-db8500.c
+++ b/arch/arm/mach-ux500/cpu-db8500.c
@@ -320,8 +320,8 @@ static void __init u8500_init_machine(void)
320 snowball_pinmaps_init(); 320 snowball_pinmaps_init();
321 else if (of_machine_is_compatible("st-ericsson,hrefv60+")) 321 else if (of_machine_is_compatible("st-ericsson,hrefv60+"))
322 hrefv60_pinmaps_init(); 322 hrefv60_pinmaps_init();
323 else if (of_machine_is_compatible("st-ericsson,u9540")) {} 323 else if (of_machine_is_compatible("st-ericsson,ccu9540")) {}
324 /* TODO: Add u9540 pinmaps. */ 324 /* TODO: Add pinmaps for ccu9540 board. */
325 325
326 /* TODO: Export SoC, USB, cpu-freq and DMA40 */ 326 /* TODO: Export SoC, USB, cpu-freq and DMA40 */
327 parent = u8500_of_init_devices(); 327 parent = u8500_of_init_devices();
@@ -334,7 +334,7 @@ static const char * u8500_dt_board_compat[] = {
334 "calaosystems,snowball-a9500", 334 "calaosystems,snowball-a9500",
335 "st-ericsson,hrefv60+", 335 "st-ericsson,hrefv60+",
336 "st-ericsson,mop500", 336 "st-ericsson,mop500",
337 "st-ericsson,u9540", 337 "st-ericsson,ccu9540",
338 NULL, 338 NULL,
339}; 339};
340 340