diff options
author | Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com> | 2021-06-25 12:00:48 -0500 |
---|---|---|
committer | Werner Zeh <werner.zeh@siemens.com> | 2021-06-28 04:29:57 +0000 |
commit | 63e98fc209a66e85e464eb36abe0da2d7eeb9ad3 (patch) | |
tree | 8cf99e28295adf61d1647bd18135380a3b8338f4 /src/device/dram/lpddr4.c | |
parent | d3230b5f7067db693386068247762bb8a4abe631 (diff) |
src/device/dram: Add terminating new lines to printk strings
BUG=b:184124605
TEST=check serial log
Signed-off-by: Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com>
Change-Id: I521a2541e23d047e255b0cc8068ad63dfaf70bfa
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55851
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/device/dram/lpddr4.c')
-rw-r--r-- | src/device/dram/lpddr4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/dram/lpddr4.c b/src/device/dram/lpddr4.c index 5b829f7812..990af9334e 100644 --- a/src/device/dram/lpddr4.c +++ b/src/device/dram/lpddr4.c @@ -65,6 +65,6 @@ uint16_t lpddr4_speed_mhz_to_reported_mts(uint16_t speed_mhz) return speed_attr->reported_mts; } } - printk(BIOS_ERR, "ERROR: LPDDR4 speed of %d MHz is out of range", speed_mhz); + printk(BIOS_ERR, "ERROR: LPDDR4 speed of %d MHz is out of range\n", speed_mhz); return 0; } |