northbridge/via: Add required space before opening parenthesis '('

Change-Id: Ic644cf6792a5d360527e48e04c74ae92be0d1d4f
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16284
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Elyes HAOUAS 2016-08-23 21:24:38 +02:00 committed by Martin Roth
parent 4a83f1cf24
commit d75b04f2b3
3 changed files with 5 additions and 5 deletions

View file

@ -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; \
} \
} \

View file

@ -393,7 +393,7 @@ void SetUMARam(void)
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
};
//for(i=0;i<0xc0;i++)
//for (i=0;i<0xc0;i++)
for (i = 0; i < 0x40; i++)
{
outb(table3c0space[i], 0x03c0 + i);

View file

@ -136,7 +136,7 @@ static void write_protect_vgabios(void)
pci_write_config8(dev, 0x80, 0xff);
/*vx855 no th 0x61 reg */
/*dev = dev_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855_VLINK, 0);
//if(dev)
//if (dev)
// pci_write_config8(dev, 0x61, 0xff); */
}
#endif