aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/winent/mb6047/mainboard.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-01-31 23:18:14 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-05-03 08:29:12 +0000
commite93634caa0ac8bd9286cf0eeb36ea960d738de2e (patch)
tree51c09bfa7e629e0310a8ed0d2fb8257844da9c34 /src/mainboard/winent/mb6047/mainboard.c
parentf46810171a58ee974ff8d71e84936eb7df0b47e1 (diff)
mainboard/winent: Remove unnecessary braces {}
Fix coding style Change-Id: I48a7bd4bd98d1a9d7b0ce4c12e09284fa4be6c7a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/23524 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/winent/mb6047/mainboard.c')
-rw-r--r--src/mainboard/winent/mb6047/mainboard.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainboard/winent/mb6047/mainboard.c b/src/mainboard/winent/mb6047/mainboard.c
index d5ec572429..e928711438 100644
--- a/src/mainboard/winent/mb6047/mainboard.c
+++ b/src/mainboard/winent/mb6047/mainboard.c
@@ -36,9 +36,8 @@ static void mb6047_hwm_init(void)
printk(BIOS_INFO, "setting up hardware monitor at 0x%04x\n", (unsigned int)res->base);
/* Init hardware monitor. */
- for (i = 0; i < ARRAY_SIZE(hwmtab); i++) {
+ for (i = 0; i < ARRAY_SIZE(hwmtab); i++)
hwm_write(res->base, hwmtab[i].bnk, hwmtab[i].idx, hwmtab[i].dat);
- }
}
static void mb6047_mainboard_init(device_t dev)