Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74567 )
Change subject: soc/amd/stoneyridge/northbridge: fix indentation in set_mmio_addr_reg ......................................................................
soc/amd/stoneyridge/northbridge: fix indentation in set_mmio_addr_reg
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I5e067f6fb2bab66d9b2f6965636845dfd8b7cacd --- M src/soc/amd/stoneyridge/northbridge.c 1 file changed, 12 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/74567/1
diff --git a/src/soc/amd/stoneyridge/northbridge.c b/src/soc/amd/stoneyridge/northbridge.c index b1d2bdd..068ba56 100644 --- a/src/soc/amd/stoneyridge/northbridge.c +++ b/src/soc/amd/stoneyridge/northbridge.c @@ -50,9 +50,9 @@
/* io range allocation. Limit */ tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00); - pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg); + pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg); tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00); - pci_write_config32(SOC_ADDR_DEV, reg, tempreg); + pci_write_config32(SOC_ADDR_DEV, reg, tempreg); }
static void read_resources(struct device *dev)