diff options
author | Finn Thain <fthain@telegraphics.com.au> | 2007-05-01 16:32:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-04 20:59:07 -0400 |
commit | 217f6710c275118af1008bb1447d244be52d2dc3 (patch) | |
tree | afcc692e42ea227090384c6973ed2c97a8636040 /arch/m68k/mac/psc.c | |
parent | cd713ddc93bf2f612783aea8eff6d0df6107765e (diff) |
m68k: Mac IRQ cleanup
There are no slow IRQs on Macs since Roman Zippel's IRQ reorganisation that
went into 2.6.16 and removed mac_irq_list[] and the do_mac_irq_list()
dispatcher. (They were implemented in do_mac_irq_list() by lowering the IPL.)
Hence there's no more use for mutual exclusion in the Mac interrupt
dispatchers. Remove it.
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, 0 insertions, 2 deletions
diff --git a/arch/m68k/mac/psc.c b/arch/m68k/mac/psc.c index 1dba88247c6f..d66f723b17c3 100644 --- a/arch/m68k/mac/psc.c +++ b/arch/m68k/mac/psc.c | |||
@@ -147,10 +147,8 @@ irqreturn_t psc_irq(int irq, void *dev_id) | |||
147 | irq_bit = 1; | 147 | irq_bit = 1; |
148 | do { | 148 | do { |
149 | if (events & irq_bit) { | 149 | if (events & irq_bit) { |
150 | psc_write_byte(pIER, irq_bit); | ||
151 | psc_write_byte(pIFR, irq_bit); | 150 | psc_write_byte(pIFR, irq_bit); |
152 | m68k_handle_int(irq_num); | 151 | m68k_handle_int(irq_num); |
153 | psc_write_byte(pIER, irq_bit | 0x80); | ||
154 | } | 152 | } |
155 | irq_num++; | 153 | irq_num++; |
156 | irq_bit <<= 1; | 154 | irq_bit <<= 1; |