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 <siro@das-labor.org>
Reviewed-on: http://review.coreboot.org/10636
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Nicolas Reinecke <nr@das-labor.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Patrick Rudolph 2015-06-22 19:46:34 +02:00 committed by Stefan Reinauer
parent 8c639359ea
commit 78c6e3ec42
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};