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:
Elyes HAOUAS 2016-09-18 19:07:40 +02:00 committed by Patrick Georgi
parent 2051448359
commit a3d15afc67
2 changed files with 2 additions and 2 deletions

View File

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

View File

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