summaryrefslogtreecommitdiff
path: root/drivers/pci/dwc/pcie-histb.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2018-04-04 13:28:45 -0500
committerBjorn Helgaas <helgaas@kernel.org>2018-04-04 13:28:45 -0500
commit1ad9a8730e8fd15c6f2ed2230e38a61c3a61d438 (patch)
tree9bc5e197aac73b91a8c039a57ea1568fba4f3af2 /drivers/pci/dwc/pcie-histb.c
parentf3c91098a444c905b69a83a4947d9dbc774f986d (diff)
parent1f319cb0538a10339d1ca73ee124331d611b43bf (diff)
Merge branch 'lorenzo/pci/dwc-msi'
* lorenzo/pci/dwc-msi: PCI: dwc: Expand maximum number of MSI IRQs from 32 to 256 PCI: dwc: Remove old MSI IRQs API PCI: dwc: Move MSI IRQs allocation to IRQ domains hierarchical API
Diffstat (limited to 'drivers/pci/dwc/pcie-histb.c')
-rw-r--r--drivers/pci/dwc/pcie-histb.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/pci/dwc/pcie-histb.c b/drivers/pci/dwc/pcie-histb.c
index 4cef0a514944..3611d6ce9a92 100644
--- a/drivers/pci/dwc/pcie-histb.c
+++ b/drivers/pci/dwc/pcie-histb.c
@@ -208,13 +208,6 @@ static struct dw_pcie_host_ops histb_pcie_host_ops = {
.host_init = histb_pcie_host_init,
};
-static irqreturn_t histb_pcie_msi_irq_handler(int irq, void *arg)
-{
- struct pcie_port *pp = arg;
-
- return dw_handle_msi_irq(pp);
-}
-
static void histb_pcie_host_disable(struct histb_pcie *hipcie)
{
reset_control_assert(hipcie->soft_reset);
@@ -413,14 +406,6 @@ static int histb_pcie_probe(struct platform_device *pdev)
dev_err(dev, "Failed to get MSI IRQ\n");
return pp->msi_irq;
}
-
- ret = devm_request_irq(dev, pp->msi_irq,
- histb_pcie_msi_irq_handler,
- IRQF_SHARED, "histb-pcie-msi", pp);
- if (ret) {
- dev_err(dev, "cannot request MSI IRQ\n");
- return ret;
- }
}
hipcie->phy = devm_phy_get(dev, "phy");