diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-06-04 01:04:37 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-07-11 11:16:00 -0400 |
commit | d6b0d1f7058f7cf818138cd7fd116dca3f3576d9 (patch) | |
tree | 77badaee27c21a63f5de73b7b4483824208245ec /include/linux/irqdomain.h | |
parent | 98aa468e045a0091a7c34d9f5205a629634fabf4 (diff) |
irqdomain: Eliminate dedicated radix lookup functions
In preparation to remove the slow revmap path, eliminate the public
radix revmap lookup functions. This simplifies the code and makes the
slowpath removal patch a lot simpler.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'include/linux/irqdomain.h')
-rw-r--r-- | include/linux/irqdomain.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h index eab8a0e60b8e..0d5b17bf5e51 100644 --- a/include/linux/irqdomain.h +++ b/include/linux/irqdomain.h | |||
@@ -174,10 +174,6 @@ static inline int irq_create_identity_mapping(struct irq_domain *host, | |||
174 | return irq_create_strict_mappings(host, hwirq, hwirq, 1); | 174 | return irq_create_strict_mappings(host, hwirq, hwirq, 1); |
175 | } | 175 | } |
176 | 176 | ||
177 | extern void irq_radix_revmap_insert(struct irq_domain *host, unsigned int virq, | ||
178 | irq_hw_number_t hwirq); | ||
179 | extern unsigned int irq_radix_revmap_lookup(struct irq_domain *host, | ||
180 | irq_hw_number_t hwirq); | ||
181 | extern unsigned int irq_linear_revmap(struct irq_domain *host, | 177 | extern unsigned int irq_linear_revmap(struct irq_domain *host, |
182 | irq_hw_number_t hwirq); | 178 | irq_hw_number_t hwirq); |
183 | 179 | ||