From b7deb04a1deed41e1a54713320a29f6731401b35 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 9 Sep 2014 11:58:18 -0500 Subject: [PATCH] tegra132: update MTS version formatting Nvidia tracks their MTS versions using decimals. Update the format so there isn't an extra step in communicating versions while debugging things. BUG=chrome-os-partner:31864 BRANCH=None TEST=Booted and confirmed decimal print out. Change-Id: Ia7d0bc49318a4b4c969ee37e762e084ec65de543 Signed-off-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/217260 Reviewed-by: Furquan Shaikh --- src/soc/nvidia/tegra132/soc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/nvidia/tegra132/soc.c b/src/soc/nvidia/tegra132/soc.c index 19ca8ebd34..d3b162e820 100644 --- a/src/soc/nvidia/tegra132/soc.c +++ b/src/soc/nvidia/tegra132/soc.c @@ -174,7 +174,7 @@ static void tegra132_init(void *chip_info) printk(BIOS_INFO, "chip %x rev %02x.%x\n", rev.chip_id, rev.major, rev.minor); - printk(BIOS_INFO, "MTS build %08x\n", raw_read_aidr_el1()); + printk(BIOS_INFO, "MTS build %u\n", raw_read_aidr_el1()); } struct chip_operations soc_nvidia_tegra132_ops = {