diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-06-14 12:43:11 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2021-06-16 14:50:38 +0000 |
commit | c1328a6dba0b22c0cdbefe67d8db0bc5423bee84 (patch) | |
tree | b79b30abd5795c233d309972b3d32f9815bd3205 /src | |
parent | 91260932e0ccc28f974f03e8cc4c5875e12307ed (diff) |
MRC platforms: Fix MRC version printk format specifiers
The printed values are unsigned, and should be printed accordingly.
Change-Id: Ie5edce914c389c70460b1ed3390731e3568340dd
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55493
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/intel/haswell/raminit.c | 2 | ||||
-rw-r--r-- | src/northbridge/intel/sandybridge/raminit_mrc.c | 2 | ||||
-rw-r--r-- | src/soc/intel/broadwell/raminit.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/intel/haswell/raminit.c b/src/northbridge/intel/haswell/raminit.c index 9660961c4e..45377839bc 100644 --- a/src/northbridge/intel/haswell/raminit.c +++ b/src/northbridge/intel/haswell/raminit.c @@ -165,7 +165,7 @@ static void sdram_initialize(struct pei_data *pei_data) /* Print the MRC version after executing the UEFI PEI stage */ u32 version = mchbar_read32(MRC_REVISION); - printk(BIOS_DEBUG, "MRC Version %d.%d.%d Build %d\n", + printk(BIOS_DEBUG, "MRC Version %u.%u.%u Build %u\n", (version >> 24) & 0xff, (version >> 16) & 0xff, (version >> 8) & 0xff, (version >> 0) & 0xff); diff --git a/src/northbridge/intel/sandybridge/raminit_mrc.c b/src/northbridge/intel/sandybridge/raminit_mrc.c index 43619cd592..fc143f67a6 100644 --- a/src/northbridge/intel/sandybridge/raminit_mrc.c +++ b/src/northbridge/intel/sandybridge/raminit_mrc.c @@ -176,7 +176,7 @@ void sdram_initialize(struct pei_data *pei_data) /* Print the MRC version after executing the UEFI PEI stage */ u32 version = mchbar_read32(MRC_REVISION); - printk(BIOS_DEBUG, "MRC Version %d.%d.%d Build %d\n", + printk(BIOS_DEBUG, "MRC Version %u.%u.%u Build %u\n", (version >> 24) & 0xff, (version >> 16) & 0xff, (version >> 8) & 0xff, (version >> 0) & 0xff); diff --git a/src/soc/intel/broadwell/raminit.c b/src/soc/intel/broadwell/raminit.c index fccb20c4a8..9db34befff 100644 --- a/src/soc/intel/broadwell/raminit.c +++ b/src/soc/intel/broadwell/raminit.c @@ -130,7 +130,7 @@ void sdram_initialize(struct pei_data *pei_data) /* Print the MRC version after executing the UEFI PEI stage. */ u32 version = mchbar_read32(MRC_REVISION); - printk(BIOS_DEBUG, "MRC Version %d.%d.%d Build %d\n", + printk(BIOS_DEBUG, "MRC Version %u.%u.%u Build %u\n", (version >> 24) & 0xff, (version >> 16) & 0xff, (version >> 8) & 0xff, (version >> 0) & 0xff); |