aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/roda/rk886ex/m3885.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-08-04 13:27:52 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-08-05 11:37:00 +0000
commit5ba154a597e7177e34a588cd9e07a4cc7f16b837 (patch)
treef62c855f21ae9f4062ed09dee239f9c00428c486 /src/mainboard/roda/rk886ex/m3885.c
parent6aa9d668739a29ebbaabd435d261f90176a72261 (diff)
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>
Diffstat (limited to 'src/mainboard/roda/rk886ex/m3885.c')
-rw-r--r--src/mainboard/roda/rk886ex/m3885.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/roda/rk886ex/m3885.c b/src/mainboard/roda/rk886ex/m3885.c
index 6756e0e9b3..59dd575670 100644
--- a/src/mainboard/roda/rk886ex/m3885.c
+++ b/src/mainboard/roda/rk886ex/m3885.c
@@ -251,7 +251,7 @@ void m3885_configure_multikey(void)
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]);