summaryrefslogtreecommitdiffstats
path: root/drivers/pci/controller/pcie-altera-msi.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2020-08-06 01:24:22 +0200
committerBjorn Helgaas <bhelgaas@google.com>2020-08-06 01:24:22 +0200
commit6f119ec8d9c8f68c0432d902312045a699c3e52a (patch)
tree37a77220c6301b947b778a45e314719e20028a79 /drivers/pci/controller/pcie-altera-msi.c
parentMerge branch 'pci/doc' (diff)
parentPCI: Remove dev_err() when handing an error from platform_get_irq() (diff)
downloadlinux-6f119ec8d9c8f68c0432d902312045a699c3e52a.tar.xz
linux-6f119ec8d9c8f68c0432d902312045a699c3e52a.zip
Merge branch 'pci/irq-error'
- Remove redundant logging for platform_get_irq() errors (Krzysztof WilczyƄski) * pci/irq-error: PCI: Remove dev_err() when handing an error from platform_get_irq()
Diffstat (limited to 'drivers/pci/controller/pcie-altera-msi.c')
-rw-r--r--drivers/pci/controller/pcie-altera-msi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/controller/pcie-altera-msi.c b/drivers/pci/controller/pcie-altera-msi.c
index 613e19af71bd..e1636f7714ca 100644
--- a/drivers/pci/controller/pcie-altera-msi.c
+++ b/drivers/pci/controller/pcie-altera-msi.c
@@ -255,7 +255,6 @@ static int altera_msi_probe(struct platform_device *pdev)
msi->irq = platform_get_irq(pdev, 0);
if (msi->irq < 0) {
- dev_err(&pdev->dev, "failed to map IRQ: %d\n", msi->irq);
ret = msi->irq;
goto err;
}