PCI: keystone: Fix error handling of irq_of_parse_and_map()
[cascardo/linux.git] / drivers / pci / host / pci-keystone.c
index 78f79e3..23a1d97 100644 (file)
@@ -197,7 +197,7 @@ static int ks_pcie_get_irq_controller_info(struct keystone_pcie *ks_pcie,
         */
        for (temp = 0; temp < max_host_irqs; temp++) {
                host_irqs[temp] = irq_of_parse_and_map(*np_temp, temp);
-               if (host_irqs[temp] < 0)
+               if (!host_irqs[temp])
                        break;
        }
        if (temp) {