summaryrefslogtreecommitdiff
path: root/src/lib/ramtest.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-04 16:30:39 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-05-09 13:11:04 +0000
commit1943f3798d7e05c704431cf6602cf8bb86e40898 (patch)
treecd49e41daf5e35667f0387bd3b45aa855e2131e6 /src/lib/ramtest.c
parent5b66288d51412d48df24e72e9d53b8e90cf4b562 (diff)
downloadcoreboot-1943f3798d7e05c704431cf6602cf8bb86e40898.tar.xz
{device,drivers,lib,mb,nb}: Use only one space after 'if'
Change-Id: I390191fb58605d1bd6a2e5d19a9dfa7c8493e6b2 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26063 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/lib/ramtest.c')
-rw-r--r--src/lib/ramtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ramtest.c b/src/lib/ramtest.c
index 9adcafdd30..461a028b11 100644
--- a/src/lib/ramtest.c
+++ b/src/lib/ramtest.c
@@ -102,7 +102,7 @@ static int ram_bitset_nodie(unsigned long start)
failed = (value2 != value);
failures |= failed;
- if (failed && !verbose) {
+ if (failed && !verbose) {
printk(BIOS_ERR, "0x%08lx wr: 0x%08lx rd: 0x%08lx FAIL\n",
start + addr, value, value2);
}