{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>
diff --git a/src/lib/ramtest.c b/src/lib/ramtest.c
index 9adcafd..461a028 100644
--- a/src/lib/ramtest.c
+++ b/src/lib/ramtest.c
@@ -102,7 +102,7 @@
 
 		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);
 		}