UPSTREAM: southbridge/via: Add space around operators

BUG=None
BRANCH=None
TEST=None

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>

Change-Id: Ib48c98bb161b92b28497df26fcfd0eae2c6829df
Reviewed-on: https://chromium-review.googlesource.com/388119
Commit-Ready: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Elyes HAOUAS 2016-09-18 19:07:40 +02:00 committed by chrome-bot
commit 295a1e8059
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;