diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2006-08-17 03:59:27 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-08-17 16:41:11 +1000 |
commit | e5c14ce118ab6a96afb2af5c4ec9727b03ab1936 (patch) | |
tree | 8533e1253717881dc93bca17537d4ff9418fabdc /arch | |
parent | 83db3dde2604d48e30a468c82da163dd1a8602b3 (diff) | |
download | op-kernel-dev-e5c14ce118ab6a96afb2af5c4ec9727b03ab1936.zip op-kernel-dev-e5c14ce118ab6a96afb2af5c4ec9727b03ab1936.tar.gz |
[POWERPC] Fix irq radix tree remapping typo
The code for using the radix tree for reverse mapping of interrupts has
a typo that causes it to create incorrect mappings if the software and
hardware numbers happen to be different. This would, among others, cause
the IDE interrupt to fail on js20's. This fixes it.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 01bdae3..7ee6854 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c @@ -693,7 +693,7 @@ unsigned int irq_radix_revmap(struct irq_host *host, /* If not there, try to insert it */ virq = irq_find_mapping(host, hwirq); if (virq != NO_IRQ) - radix_tree_insert(tree, virq, &irq_map[virq]); + radix_tree_insert(tree, hwirq, &irq_map[virq]); bail: spin_unlock_irqrestore(&irq_big_lock, flags); return virq; |