]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
genirq; Remove the last leftovers of the old sparse irq code
authorThomas Gleixner <tglx@linutronix.de>
Tue, 22 Mar 2011 23:24:11 +0000 (00:24 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 23 Mar 2011 19:22:06 +0000 (20:22 +0100)
All users converted. Get rid of it.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/irqdesc.h
kernel/irq/irqdesc.c

index 00218371518b0830328f6c089b3d5df0df471d4c..0b30662bc36ca4bc1dc134d20d1df6bddade8a18 100644 (file)
@@ -100,13 +100,6 @@ struct irq_desc {
 extern struct irq_desc irq_desc[NR_IRQS];
 #endif
 
-/* Will be removed once the last users in power and sh are gone */
-extern struct irq_desc *irq_to_desc_alloc_node(unsigned int irq, int node);
-static inline struct irq_desc *move_irq_desc(struct irq_desc *desc, int node)
-{
-       return desc;
-}
-
 #ifdef CONFIG_GENERIC_HARDIRQS
 
 static inline struct irq_data *irq_desc_get_irq_data(struct irq_desc *desc)
index dbccc799407f08c3bd9fba76b8af4178868085ca..6fb014f172f7397a7edeec525d53a9b649dfcf25 100644 (file)
@@ -198,15 +198,6 @@ err:
        return -ENOMEM;
 }
 
-struct irq_desc * __ref irq_to_desc_alloc_node(unsigned int irq, int node)
-{
-       int res = irq_alloc_descs(irq, irq, 1, node);
-
-       if (res == -EEXIST || res == irq)
-               return irq_to_desc(irq);
-       return NULL;
-}
-
 static int irq_expand_nr_irqs(unsigned int nr)
 {
        if (nr > IRQ_BITMAP_BITS)
@@ -283,11 +274,6 @@ struct irq_desc *irq_to_desc(unsigned int irq)
        return (irq < NR_IRQS) ? irq_desc + irq : NULL;
 }
 
-struct irq_desc *irq_to_desc_alloc_node(unsigned int irq, int node)
-{
-       return irq_to_desc(irq);
-}
-
 static void free_desc(unsigned int irq)
 {
        dynamic_irq_cleanup(irq);