diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2020-02-10 10:39:17 +0530 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-02-13 21:39:18 +0530 |
commit | b9c268c90e32ac5a31fec71527ec365f14ac9c52 (patch) | |
tree | 84466ef0ddb4aec8ffb8284765ff71cce2d10c99 /arch/arm/mach-k3 | |
parent | 766d1781c76714ad8c9854ab59816b8e54a8e0c4 (diff) | |
download | u-boot-b9c268c90e32ac5a31fec71527ec365f14ac9c52.tar.gz u-boot-b9c268c90e32ac5a31fec71527ec365f14ac9c52.tar.xz u-boot-b9c268c90e32ac5a31fec71527ec365f14ac9c52.zip |
arm: mach-k3: Fix nomenclature on Silicon Revisions
Data manual mentions the new silicon revisions as SR instead of PG. Use
the same nomenclature inside U-Boot as well.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm/mach-k3')
-rw-r--r-- | arch/arm/mach-k3/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-k3/common.c b/arch/arm/mach-k3/common.c index 2f82edb970..7af60a7f2f 100644 --- a/arch/arm/mach-k3/common.c +++ b/arch/arm/mach-k3/common.c @@ -218,7 +218,7 @@ int print_cpuinfo(void) name = "Unknown Silicon"; }; - printf("%s PG ", name); + printf("%s SR ", name); switch (rev) { case REV_PG1_0: name = "1.0"; |