From d75b04f2b3baf75fdc52b06a319dddf0386f8e59 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 23 Aug 2016 21:24:38 +0200 Subject: northbridge/via: Add required space before opening parenthesis '(' Change-Id: Ic644cf6792a5d360527e48e04c74ae92be0d1d4f Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/16284 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/northbridge/via/cx700/raminit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/northbridge/via/cx700') diff --git a/src/northbridge/via/cx700/raminit.c b/src/northbridge/via/cx700/raminit.c index 2016a87e2f..7d3fcbeb0b 100644 --- a/src/northbridge/via/cx700/raminit.c +++ b/src/northbridge/via/cx700/raminit.c @@ -79,10 +79,10 @@ do{ \ val = 0; \ tmp = 0; \ - for(i = 0; i < 2; i++) { \ - if(pci_read_config8(PCI_DEV(0, 0, 4), (SCRATCH_REG_BASE + (i << 1)))) { \ + for (i = 0; i < 2; i++) { \ + if (pci_read_config8(PCI_DEV(0, 0, 4), (SCRATCH_REG_BASE + (i << 1)))) { \ tmp = get_spd_data(ctrl, i, reg); \ - if(tmp > val) \ + if (tmp > val) \ val = tmp; \ } \ } \ -- cgit v1.2.3