diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-03-26 23:27:22 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-04-10 16:02:27 +0000 |
commit | e82191451c7a66500ac81f981042c8f166849b40 (patch) | |
tree | cbecbd76489beb722269c28fb5d00dc4fc95a89e | |
parent | dd7ce4e1d3b52108500742701728e4e453a25b83 (diff) |
nb/intel/x4x: Add missing newlines to log message
Change-Id: I67f38bcb1ec0fbbfb7f2f3fcfaf2f9bf2d9ac92c
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51875
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/northbridge/intel/x4x/raminit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/intel/x4x/raminit.c b/src/northbridge/intel/x4x/raminit.c index d94dd0af58..97c0a53f07 100644 --- a/src/northbridge/intel/x4x/raminit.c +++ b/src/northbridge/intel/x4x/raminit.c @@ -263,8 +263,8 @@ static void select_cas_dramfreq_ddr3(struct sysinfo *s, struct abs_timings *save min_tCLK = MAX(min_tCLK, saved_timings->min_tclk); if (min_tCLK == 0) { printk(BIOS_ERR, - "DRAM frequency is under lowest supported frequency (400 MHz). " - "Increasing to 400 MHz as last resort"); + "DRAM frequency is under lowest supported frequency (400 MHz).\n" + "Increasing to 400 MHz as last resort.\n"); min_tCLK = TCK_400MHZ; } |