diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2018-04-04 20:28:45 +0200 |
---|---|---|
committer | Bjorn Helgaas <helgaas@kernel.org> | 2018-04-04 20:28:45 +0200 |
commit | 1ad9a8730e8fd15c6f2ed2230e38a61c3a61d438 (patch) | |
tree | 9bc5e197aac73b91a8c039a57ea1568fba4f3af2 /drivers/pci/dwc/pcie-histb.c | |
parent | Merge branch 'lorenzo/pci/dwc' (diff) | |
parent | PCI: dwc: Expand maximum number of MSI IRQs from 32 to 256 (diff) | |
download | linux-1ad9a8730e8fd15c6f2ed2230e38a61c3a61d438.tar.xz linux-1ad9a8730e8fd15c6f2ed2230e38a61c3a61d438.zip |
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.c | 15 |
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"); |