southbridge/via: Add space around operators
Change-Id: Ib48c98bb161b92b28497df26fcfd0eae2c6829df Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16635 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
2051448359
commit
a3d15afc67
|
@ -60,7 +60,7 @@ static void pcie_common_init(struct device *dev)
|
|||
|
||||
/* Wait up to 100ms for link to come up */
|
||||
up = 0;
|
||||
for (i=0; i<1000; i++) {
|
||||
for (i = 0; i < 1000; i++) {
|
||||
if (pci_read_config16(dev, 0x52) & (1<<13)) {
|
||||
up = 1;
|
||||
break;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include <device/pci_ids.h>
|
||||
#include <pc80/i8259.h>
|
||||
|
||||
#if (CONFIG_PIRQ_ROUTE==1 && CONFIG_GENERATE_PIRQ_TABLE==1)
|
||||
#if (CONFIG_PIRQ_ROUTE == 1 && CONFIG_GENERATE_PIRQ_TABLE == 1)
|
||||
void pirq_assign_irqs(const unsigned char route[4])
|
||||
{
|
||||
device_t pdev;
|
||||
|
|
Loading…
Reference in New Issue