microblaze: Remove NO_IRQ from architecture
authorMichal Simek <monstr@monstr.eu>
Wed, 21 Dec 2011 12:10:24 +0000 (13:10 +0100)
committerMichal Simek <monstr@monstr.eu>
Thu, 5 Jan 2012 07:34:31 +0000 (08:34 +0100)
NO_IRQ shouldn't be used by any driver. All Microblaze
drivers are fixed that's why NO_IRQ can be removed.

Also fix pci-common.c which has references to NO_IRQ removed.

Signed-off-by: Michal Simek <monstr@monstr.eu>
Reviewed-by: Ryan Mallon <rmallon@gmail.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
CC: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/microblaze/include/asm/irq.h
arch/microblaze/pci/pci-common.c

index b116a825de7714606eac624182dcacd93d05e64b..a175132e44960a752f2aaf29953fb11b556e3499 100644 (file)
@@ -27,8 +27,6 @@ typedef unsigned long irq_hw_number_t;
 
 extern unsigned int nr_irq;
 
-#define NO_IRQ 0
-
 struct pt_regs;
 extern void do_IRQ(struct pt_regs *regs);
 
index db841c7b9d5bad1dcbf4c55cb54301ceb76dd460..0d71b2ed81074befc649e5d369ebfdafb13ccf1a 100644 (file)
@@ -242,7 +242,7 @@ int pci_read_irq_line(struct pci_dev *pci_dev)
                         line, pin);
 
                virq = irq_create_mapping(NULL, line);
-               if (virq != NO_IRQ)
+               if (virq)
                        irq_set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
        } else {
                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)
                virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
                                             oirq.size);
        }
-       if (virq == NO_IRQ) {
+       if (!virq) {
                pr_debug(" Failed to map !\n");
                return -1;
        }
This page took 0.02664 seconds and 5 git commands to generate.