diff options
author | Sinan Kaya <okaya@codeaurora.org> | 2018-07-20 01:04:12 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2018-07-20 01:04:23 +0200 |
commit | 811c5cb37df46b0cd714dbd053d19cdb97d08cff (patch) | |
tree | c8cea541b7869d0ce1ae2f7d54fdafd650c6a3bf /drivers/infiniband/hw/hfi1/pcie.c | |
parent | PCI: Hide pci_reset_bridge_secondary_bus() from drivers (diff) | |
download | linux-811c5cb37df46b0cd714dbd053d19cdb97d08cff.tar.xz linux-811c5cb37df46b0cd714dbd053d19cdb97d08cff.zip |
PCI: Unify try slot and bus reset API
Drivers are expected to call pci_try_reset_slot() or pci_try_reset_bus() by
querying if a system supports hotplug or not. A survey showed that most
drivers don't do this and we are leaking hotplug capability to the user.
Hide pci_try_slot_reset() from drivers and embed into pci_try_bus_reset().
Change pci_try_reset_bus() parameter from struct pci_bus to struct pci_dev.
Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/infiniband/hw/hfi1/pcie.c')
-rw-r--r-- | drivers/infiniband/hw/hfi1/pcie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/hfi1/pcie.c b/drivers/infiniband/hw/hfi1/pcie.c index 4570c4dc93d9..df4f2d390be8 100644 --- a/drivers/infiniband/hw/hfi1/pcie.c +++ b/drivers/infiniband/hw/hfi1/pcie.c @@ -905,7 +905,7 @@ static int trigger_sbr(struct hfi1_devdata *dd) * delay after a reset is required. Per spec requirements, * the link is either working or not after that point. */ - return pci_try_reset_bus(dev->bus); + return pci_try_reset_bus(dev); } /* |