diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-07-19 15:43:47 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-20 15:23:11 +0000 |
commit | fb95a52b6e927891509006f3c14124af4dc1d890 (patch) | |
tree | 7ed3cafb3ac7a04b44ac9a93b9f268bf70004b79 /src/soc/intel/common/smbios.c | |
parent | 14deaeec6177cea2829dff977ea67d74ed4aca19 (diff) |
soc/intel/common/smbios: Amend debug message
Change-Id: I6fcee760eb32b797430eb363ce0202557b74a126
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/20649
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/smbios.c')
-rw-r--r-- | src/soc/intel/common/smbios.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/common/smbios.c b/src/soc/intel/common/smbios.c index 6c14ff0b67..bcddb78596 100644 --- a/src/soc/intel/common/smbios.c +++ b/src/soc/intel/common/smbios.c @@ -50,6 +50,7 @@ void dimm_info_fill(struct dimm_info *dimm, u32 dimm_capacity, u8 ddr_type, dimm->bus_width = MEMORY_BUS_WIDTH_128; break; default: - printk(BIOS_ERR, "Incorrect DIMM Data width"); + printk(BIOS_NOTICE, "Incorrect DIMM Data width: %u\n", + (unsigned int)data_width); } } |