aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPraneeth Bajjuri2017-10-06 17:34:25 -0500
committerDavid Huang2017-10-25 15:16:37 -0500
commitbebc95a98d3550b9b41de4f26023c8694fea586c (patch)
tree79b1ad1bbe7ef5c272d3bb5f915d75f42dd9fdc3
parent7031c46d3b141eb310001a0600bcfcf7a75725c2 (diff)
downloadu-boot-bebc95a98d3550b9b41de4f26023c8694fea586c.tar.gz
u-boot-bebc95a98d3550b9b41de4f26023c8694fea586c.tar.xz
u-boot-bebc95a98d3550b9b41de4f26023c8694fea586c.zip
omap-common: fastboot: update cpu device name
update cpu device name to recommended convention. Used by "fastboot getvar cpu" command to detect and flash the right device definition to the designated android partition. Change-Id: I2fda7ff8ee14eb3b51731db58dbb01090a6b8a19 Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
-rw-r--r--arch/arm/cpu/armv7/omap-common/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/utils.c b/arch/arm/cpu/armv7/omap-common/utils.c
index ff5e4818e5..53e27d1662 100644
--- a/arch/arm/cpu/armv7/omap-common/utils.c
+++ b/arch/arm/cpu/armv7/omap-common/utils.c
@@ -135,12 +135,12 @@ static void omap_set_fastboot_cpu(void)
135 case DRA752_ES1_0: 135 case DRA752_ES1_0:
136 case DRA752_ES1_1: 136 case DRA752_ES1_1:
137 case DRA752_ES2_0: 137 case DRA752_ES2_0:
138 cpu = "J6"; 138 cpu = "DRA752";
139 break; 139 break;
140 case DRA722_ES1_0: 140 case DRA722_ES1_0:
141 case DRA722_ES2_0: 141 case DRA722_ES2_0:
142 case DRA722_ES2_1: 142 case DRA722_ES2_1:
143 cpu = "J6ECO"; 143 cpu = "DRA722";
144 break; 144 break;
145 default: 145 default:
146 cpu = "unknown"; 146 cpu = "unknown";