aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/cell/interrupt.c
diff options
context:
space:
mode:
authorarnd@arndb.de <arnd@arndb.de>2006-06-19 20:33:17 +0200
committerPaul Mackerras <paulus@samba.org>2006-06-21 15:01:29 +1000
commitb40feec8efbe609a3a38bca1f18d3ba4d590563a (patch)
tree6c2163a85a1c26250f1fd66692fbdb745b126681 /arch/powerpc/platforms/cell/interrupt.c
parentacf7d76827a577059636e949079021e6af6dd702 (diff)
downloadlinux-b40feec8efbe609a3a38bca1f18d3ba4d590563a.tar.gz
[POWERPC] cell: fix interrupt priority handling
Checking the priority field to test for irq validity is completely bogus and breaks with future external interrupt controllers. Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/interrupt.c')
-rw-r--r--arch/powerpc/platforms/cell/interrupt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/cell/interrupt.c b/arch/powerpc/platforms/cell/interrupt.c
index 0a707bcabef69..f4e2d8805c9e3 100644
--- a/arch/powerpc/platforms/cell/interrupt.c
+++ b/arch/powerpc/platforms/cell/interrupt.c
@@ -117,8 +117,7 @@ static int iic_external_get_irq(struct cbe_iic_pending_bits pending)
* One of these units can be connected
* to an external interrupt controller.
*/
- if (pending.prio > 0x3f ||
- pending.class != 2)
+ if (pending.class != 2)
break;
irq = IIC_EXT_OFFSET
+ spider_get_irq(node)