Commit 3b903891 authored by Thomas Gleixner's avatar Thomas Gleixner

genirq; Remove the last leftovers of the old sparse irq code

All users converted. Get rid of it.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 6447f55d
...@@ -100,13 +100,6 @@ struct irq_desc { ...@@ -100,13 +100,6 @@ struct irq_desc {
extern struct irq_desc irq_desc[NR_IRQS]; extern struct irq_desc irq_desc[NR_IRQS];
#endif #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 #ifdef CONFIG_GENERIC_HARDIRQS
static inline struct irq_data *irq_desc_get_irq_data(struct irq_desc *desc) static inline struct irq_data *irq_desc_get_irq_data(struct irq_desc *desc)
......
...@@ -198,15 +198,6 @@ static int alloc_descs(unsigned int start, unsigned int cnt, int node) ...@@ -198,15 +198,6 @@ static int alloc_descs(unsigned int start, unsigned int cnt, int node)
return -ENOMEM; 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) static int irq_expand_nr_irqs(unsigned int nr)
{ {
if (nr > IRQ_BITMAP_BITS) if (nr > IRQ_BITMAP_BITS)
...@@ -283,11 +274,6 @@ struct irq_desc *irq_to_desc(unsigned int irq) ...@@ -283,11 +274,6 @@ struct irq_desc *irq_to_desc(unsigned int irq)
return (irq < NR_IRQS) ? irq_desc + irq : NULL; 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) static void free_desc(unsigned int irq)
{ {
dynamic_irq_cleanup(irq); dynamic_irq_cleanup(irq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment