diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2020-03-19 10:57:33 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-03-19 15:13:41 +0100 |
commit | 0432184f2f4a7bce6b02d1319277a6e7cefbff10 (patch) | |
tree | d9606ed6843342b67ee6ce48879ce06fed99c670 /drivers | |
parent | cad144d6e5768f60161d971e6d280d2197fb2a9b (diff) |
staging: mt7621-pci: fix register to set up virtual bridges
Instead of being using PCI Configuration and Status Register to
set up virtual bridges we are using CONFIG_ADDR Register which is
wrong. Hence, set the correct value.
Fixes: 9a5e71a68d20 ("staging: mt7621-pci: simplify 'mt7621_pcie_init_virtual_bridges' function")
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Link: https://lore.kernel.org/r/20200319095733.1557-1-sergio.paracuellos@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/mt7621-pci/pci-mt7621.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/mt7621-pci/pci-mt7621.c b/drivers/staging/mt7621-pci/pci-mt7621.c index 7ef2099b01c5..2a01645162a5 100644 --- a/drivers/staging/mt7621-pci/pci-mt7621.c +++ b/drivers/staging/mt7621-pci/pci-mt7621.c @@ -603,7 +603,7 @@ static int mt7621_pcie_init_virtual_bridges(struct mt7621_pcie *pcie) if ((pcie_link_status & BIT(i)) == 0) p2p_br_devnum[i] = n++; - pcie_rmw(pcie, RALINK_PCI_CONFIG_ADDR, + pcie_rmw(pcie, RALINK_PCI_PCICFG_ADDR, PCIE_P2P_BR_DEVNUM_MASK_FULL, (p2p_br_devnum[0] << PCIE_P2P_BR_DEVNUM0_SHIFT) | (p2p_br_devnum[1] << PCIE_P2P_BR_DEVNUM1_SHIFT) | |