aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch/early_pch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/broadwell/pch/early_pch.c')
-rw-r--r--src/soc/intel/broadwell/pch/early_pch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/broadwell/pch/early_pch.c b/src/soc/intel/broadwell/pch/early_pch.c
index a18a5ecdd9..5e7ce2a6f8 100644
--- a/src/soc/intel/broadwell/pch/early_pch.c
+++ b/src/soc/intel/broadwell/pch/early_pch.c
@@ -74,7 +74,7 @@ void pch_early_init(void)
enable_smbus();
/* 8.14 Additional PCI Express Programming Steps, step #1 */
- pci_update_config32(_PCH_DEV(PCIE, 0), 0xf4, ~0x60, 0);
- pci_update_config32(_PCH_DEV(PCIE, 0), 0xf4, ~0x80, 0x80);
- pci_update_config32(_PCH_DEV(PCIE, 0), 0xe2, ~0x30, 0x30);
+ pci_and_config32(_PCH_DEV(PCIE, 0), 0xf4, ~0x60);
+ pci_or_config32(_PCH_DEV(PCIE, 0), 0xf4, 0x80);
+ pci_or_config32(_PCH_DEV(PCIE, 0), 0xe2, 0x30);
}