diff options
Diffstat (limited to 'arch/microblaze/pci/pci-common.c')
-rw-r--r-- | arch/microblaze/pci/pci-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/pci/pci-common.c b/arch/microblaze/pci/pci-common.c index db841c7b9d5b..0d71b2ed8107 100644 --- a/arch/microblaze/pci/pci-common.c +++ b/arch/microblaze/pci/pci-common.c | |||
@@ -242,7 +242,7 @@ int pci_read_irq_line(struct pci_dev *pci_dev) | |||
242 | line, pin); | 242 | line, pin); |
243 | 243 | ||
244 | virq = irq_create_mapping(NULL, line); | 244 | virq = irq_create_mapping(NULL, line); |
245 | if (virq != NO_IRQ) | 245 | if (virq) |
246 | irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW); | 246 | irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW); |
247 | } else { | 247 | } else { |
248 | pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n", | 248 | pr_debug(" Got one, spec %d cells (0x%08x 0x%08x...) on %s\n", |
@@ -253,7 +253,7 @@ int pci_read_irq_line(struct pci_dev *pci_dev) | |||
253 | virq = irq_create_of_mapping(oirq.controller, oirq.specifier, | 253 | virq = irq_create_of_mapping(oirq.controller, oirq.specifier, |
254 | oirq.size); | 254 | oirq.size); |
255 | } | 255 | } |
256 | if (virq == NO_IRQ) { | 256 | if (!virq) { |
257 | pr_debug(" Failed to map !\n"); | 257 | pr_debug(" Failed to map !\n"); |
258 | return -1; | 258 | return -1; |
259 | } | 259 | } |