Merge tag 'powerpc-4.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[cascardo/linux.git] / arch / powerpc / platforms / maple / pci.c
index a2f89e6..a0589aa 100644 (file)
@@ -552,7 +552,7 @@ void maple_pci_irq_fixup(struct pci_dev *dev)
            pci_bus_to_host(dev->bus) == u4_pcie) {
                printk(KERN_DEBUG "Fixup U4 PCIe IRQ\n");
                dev->irq = irq_create_mapping(NULL, 1);
-               if (dev->irq != NO_IRQ)
+               if (dev->irq)
                        irq_set_irq_type(dev->irq, IRQ_TYPE_LEVEL_LOW);
        }
 
@@ -562,7 +562,7 @@ void maple_pci_irq_fixup(struct pci_dev *dev)
        if (dev->vendor == PCI_VENDOR_ID_AMD &&
            dev->device == PCI_DEVICE_ID_AMD_8111_IDE &&
            (dev->class & 5) != 5) {
-               dev->irq = NO_IRQ;
+               dev->irq = 0;
        }
 
        DBG(" <- maple_pci_irq_fixup\n");
@@ -648,7 +648,7 @@ int maple_pci_get_legacy_ide_irq(struct pci_dev *pdev, int channel)
                return defirq;
        }
        irq = irq_of_parse_and_map(np, channel & 0x1);
-       if (irq == NO_IRQ) {
+       if (!irq) {
                printk("Failed to map onboard IDE interrupt for channel %d\n",
                       channel);
                return defirq;