diff options
author | Tom Rini <trini@konsulko.com> | 2022-03-25 19:18:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-25 19:18:30 -0400 |
commit | 7f0826c169ff14d62e92d02f85d33d0030d45c12 (patch) | |
tree | c2c71e583e290554d85fbb0baffe50d3c90ba948 /drivers/pci/pcie_iproc.c | |
parent | e47bbf7e0e160ad8a52927cf3411673413138285 (diff) | |
parent | c537a36839964b66b6c56c7488c3809763de5a16 (diff) |
Merge branch '2022-03-25-assorted-updates' into next
- Assorted PCI cleanups
- Allow building with -Og
- ast2600 pwm support
- PFUZE100 bootcount driver
Diffstat (limited to 'drivers/pci/pcie_iproc.c')
-rw-r--r-- | drivers/pci/pcie_iproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pcie_iproc.c b/drivers/pci/pcie_iproc.c index 85dfab5c720..d6d3a9e2025 100644 --- a/drivers/pci/pcie_iproc.c +++ b/drivers/pci/pcie_iproc.c @@ -1123,7 +1123,7 @@ static int iproc_pcie_check_link(struct iproc_pcie *pcie) PCI_BRIDGE_CTRL_REG_OFFSET, 4, &class); class &= ~PCI_BRIDGE_CTRL_REG_CLASS_MASK; - class |= (PCI_CLASS_BRIDGE_PCI << 8); + class |= PCI_CLASS_BRIDGE_PCI_NORMAL; iproc_pci_raw_config_write32(pcie, 0, PCI_BRIDGE_CTRL_REG_OFFSET, 4, class); |