From 78c6e3ec42e9519fc329a65045bfd8b169080b59 Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Mon, 22 Jun 2015 19:46:34 +0200 Subject: ddr3: add missing newline Add missing newline to SPD CRC verification error message. Verified by testing this code on Intel IvyBridge and Gigabyte GA-B75M-D3H. Change-Id: Id1a0a2329507975c3f66ab884f6e26d99003318e Signed-off-by: Patrick Rudolph Reviewed-on: http://review.coreboot.org/10636 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: Nicolas Reinecke Reviewed-by: Paul Menzel --- src/device/dram/ddr3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/device') diff --git a/src/device/dram/ddr3.c b/src/device/dram/ddr3.c index c10741bdb3..e1bb873c18 100644 --- a/src/device/dram/ddr3.c +++ b/src/device/dram/ddr3.c @@ -133,7 +133,7 @@ int spd_decode_ddr3(dimm_attr * dimm, spd_raw_data spd) spd_crc = (spd[127] << 8) + spd[126]; /* Verify the CRC is correct */ if (crc != spd_crc) { - printram("ERROR: SPD CRC failed!!!"); + printram("ERROR: SPD CRC failed!!!\n"); ret = SPD_STATUS_CRC_ERROR; }; -- cgit v1.2.3