src: Use space after 'if', 'for'

Change-Id: I5d3a5ede47aefc7cc2ee330f8a0bcded16138764
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44173
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/mainboard/google/peach_pit/mainboard.c b/src/mainboard/google/peach_pit/mainboard.c
index 8b54b99..33541b2 100644
--- a/src/mainboard/google/peach_pit/mainboard.c
+++ b/src/mainboard/google/peach_pit/mainboard.c
@@ -254,7 +254,7 @@
 	 * we're out of here.
 	 * If it's not ready after a second, then we're in big trouble.
 	 */
-	for(i = 0; i < 1000; i++){
+	for (i = 0; i < 1000; i++){
 		if (gpio_get_value(dp_hpd))
 			break;
 		mdelay(1);
diff --git a/src/mainboard/google/peach_pit/romstage.c b/src/mainboard/google/peach_pit/romstage.c
index d99db80..53fdfba 100644
--- a/src/mainboard/google/peach_pit/romstage.c
+++ b/src/mainboard/google/peach_pit/romstage.c
@@ -129,13 +129,13 @@
 	unsigned long *l = (void *)0x40000000;
 	int bad = 0;
 	unsigned long i;
-	for(i = 0; i < 256*1048576; i++){
+	for (i = 0; i < 256*1048576; i++){
 		if (! (i%1048576))
 			printk(BIOS_SPEW, "%lu ...", i);
 		l[i] = 0xffffffff - i;
 	}
 
-	for(i = 0; i < 256*1048576; i++){
+	for (i = 0; i < 256*1048576; i++){
 		if (! (i%1048576))
 			printk(BIOS_SPEW, "%lu ...", i);
 		if (l[i] != (0xffffffff - i)){
@@ -177,7 +177,7 @@
 	}
 
 
-	for(i = 0; i < amt; i += 4){
+	for (i = 0; i < amt; i += 4){
 		if (rdev_readat(boot_dev, &in, i, 4) < 4) {
 			printk(BIOS_SPEW, "simple_spi_test fails at %d\n", i);
 			return;
diff --git a/src/mainboard/roda/rk886ex/m3885.c b/src/mainboard/roda/rk886ex/m3885.c
index 6756e0e..59dd575 100644
--- a/src/mainboard/roda/rk886ex/m3885.c
+++ b/src/mainboard/roda/rk886ex/m3885.c
@@ -251,7 +251,7 @@
 	maxvars = m3885_get_variable(0x00);
 	printk(BIOS_DEBUG, "M388x has %d variables in original bank.\n", maxvars);
 	for (i = 0; i < ARRAY_SIZE(variables); i+=3) {
-		if(variables[i + 0] > maxvars)
+		if (variables[i + 0] > maxvars)
 			continue;
 		reg8 = m3885_get_variable(variables[i + 0]);
 		reg8 &= ~(variables[i + 1]);