diff options
author | Finn Thain <fthain@telegraphics.com.au> | 2007-05-01 16:32:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-04 20:59:07 -0400 |
commit | 647b804c8237aa35e19caf8e11ea8d5565107b0e (patch) | |
tree | f1ea341c082eaf92535757bdba14b40ba423a94c /arch/m68k/mac/psc.c | |
parent | 2964db0f590437b7efb7858bd2330134ac5292df (diff) |
m68k: reverse Mac IRQ damage
Reverse the last of a monumental brown-paper-bag commit that went into the 2.3
kernel.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k/mac/psc.c')
-rw-r--r-- | arch/m68k/mac/psc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/mac/psc.c b/arch/m68k/mac/psc.c index 15378a5878c9..401147985a96 100644 --- a/arch/m68k/mac/psc.c +++ b/arch/m68k/mac/psc.c | |||
@@ -149,8 +149,8 @@ irqreturn_t psc_irq(int irq, void *dev_id) | |||
149 | for (i = 0, irq_bit = 1 ; i < 4 ; i++, irq_bit <<= 1) { | 149 | for (i = 0, irq_bit = 1 ; i < 4 ; i++, irq_bit <<= 1) { |
150 | if (events & irq_bit) { | 150 | if (events & irq_bit) { |
151 | psc_write_byte(pIER, irq_bit); | 151 | psc_write_byte(pIER, irq_bit); |
152 | m68k_handle_int(base_irq + i); | ||
153 | psc_write_byte(pIFR, irq_bit); | 152 | psc_write_byte(pIFR, irq_bit); |
153 | m68k_handle_int(base_irq + i); | ||
154 | psc_write_byte(pIER, irq_bit | 0x80); | 154 | psc_write_byte(pIER, irq_bit | 0x80); |
155 | } | 155 | } |
156 | } | 156 | } |