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:
committed by
Martin Roth
parent
4a83f1cf24
commit
d75b04f2b3
@@ -79,10 +79,10 @@
|
|||||||
do{ \
|
do{ \
|
||||||
val = 0; \
|
val = 0; \
|
||||||
tmp = 0; \
|
tmp = 0; \
|
||||||
for(i = 0; i < 2; i++) { \
|
for (i = 0; i < 2; i++) { \
|
||||||
if(pci_read_config8(PCI_DEV(0, 0, 4), (SCRATCH_REG_BASE + (i << 1)))) { \
|
if (pci_read_config8(PCI_DEV(0, 0, 4), (SCRATCH_REG_BASE + (i << 1)))) { \
|
||||||
tmp = get_spd_data(ctrl, i, reg); \
|
tmp = get_spd_data(ctrl, i, reg); \
|
||||||
if(tmp > val) \
|
if (tmp > val) \
|
||||||
val = tmp; \
|
val = tmp; \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
|
@@ -393,7 +393,7 @@ void SetUMARam(void)
|
|||||||
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
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++)
|
for (i = 0; i < 0x40; i++)
|
||||||
{
|
{
|
||||||
outb(table3c0space[i], 0x03c0 + i);
|
outb(table3c0space[i], 0x03c0 + i);
|
||||||
|
@@ -136,7 +136,7 @@ static void write_protect_vgabios(void)
|
|||||||
pci_write_config8(dev, 0x80, 0xff);
|
pci_write_config8(dev, 0x80, 0xff);
|
||||||
/*vx855 no th 0x61 reg */
|
/*vx855 no th 0x61 reg */
|
||||||
/*dev = dev_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855_VLINK, 0);
|
/*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); */
|
// pci_write_config8(dev, 0x61, 0xff); */
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user