[PATCH 3/5] pci: handled return value of platform_get_irq correctly

From: Aman Sharma
Date: Wed Mar 11 2020 - 15:19:33 EST


Signed-off-by: Aman Sharma <amanharitsh123@xxxxxxxxx>
---
drivers/pci/controller/pcie-mobiveil.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/pci/controller/pcie-mobiveil.c b/drivers/pci/controller/pcie-mobiveil.c
index 3a696ca45bfa..fe816a284dd4 100644
--- a/drivers/pci/controller/pcie-mobiveil.c
+++ b/drivers/pci/controller/pcie-mobiveil.c
@@ -456,9 +456,9 @@ static int mobiveil_pcie_parse_dt(struct mobiveil_pcie *pcie)
pcie->ppio_wins = MAX_PIO_WINDOWS;

pcie->irq = platform_get_irq(pdev, 0);
- if (pcie->irq <= 0) {
+ if (pcie->irq < 0) {
dev_err(dev, "failed to map IRQ: %d\n", pcie->irq);
- return -ENODEV;
+ return pcie->irq;
}

return 0;
--
2.20.1