Add missing newline in error message

This is purely cosmetic. All error messages in the Sandybridge raminit
code printed a newline at the end.

Change-Id: I880d291928291d487039850a2a3d53a1101124ba
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/1699
Reviewed-by: Marc Jones <marcj303@gmail.com>
Tested-by: build bot (Jenkins)
This commit is contained in:
Stefan Reinauer 2012-08-09 11:00:14 -07:00 committed by Stefan Reinauer
parent 4959cea9ce
commit c6b9f926cc
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ void sdram_initialize(struct pei_data *pei_data)
if (rv) {
switch (rv) {
case -1:
printk(BIOS_ERR, "PEI version mismatch.");
printk(BIOS_ERR, "PEI version mismatch.\n");
break;
case -2:
printk(BIOS_ERR, "Invalid memory frequency.\n");