diff options
author | Finn Thain <fthain@telegraphics.com.au> | 2017-01-02 04:53:54 -0500 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2017-02-09 14:18:19 +0100 |
commit | 16a1a66a5e8324dd6a2864ceaf3e246fc11f93a5 (patch) | |
tree | ca1f30062f59b2314a6171206e537df1c320b7db /arch/m68k/mac/macints.c | |
parent | ed6344e1fd647a97b286b55580416c350676aa4d (diff) | |
download | op-kernel-dev-16a1a66a5e8324dd6a2864ceaf3e246fc11f93a5.zip op-kernel-dev-16a1a66a5e8324dd6a2864ceaf3e246fc11f93a5.tar.gz |
m68k/mac: Clean up interrupt debug macros and printk statements
Mac interrupt code has been debugged. The Penguin deficiencies that
still cause unhandled interrupts aren't fixable here. Besides,
interrupts are fast and frequent and these printk statements
were never really useful IMO. Remove them.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/mac/macints.c')
-rw-r--r-- | arch/m68k/mac/macints.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/m68k/mac/macints.c b/arch/m68k/mac/macints.c index 1244d36..b5cd06d 100644 --- a/arch/m68k/mac/macints.c +++ b/arch/m68k/mac/macints.c @@ -129,8 +129,6 @@ extern void show_registers(struct pt_regs *); irqreturn_t mac_nmi_handler(int, void *); -/* #define DEBUG_MACINTS */ - static unsigned int mac_irq_startup(struct irq_data *); static void mac_irq_shutdown(struct irq_data *); @@ -144,9 +142,6 @@ static struct irq_chip mac_irq_chip = { void __init mac_init_IRQ(void) { -#ifdef DEBUG_MACINTS - printk("mac_init_IRQ(): Setting things up...\n"); -#endif m68k_setup_irq_controller(&mac_irq_chip, handle_simple_irq, IRQ_USER, NUM_MAC_SOURCES - IRQ_USER); @@ -167,9 +162,6 @@ void __init mac_init_IRQ(void) if (request_irq(IRQ_AUTO_7, mac_nmi_handler, 0, "NMI", mac_nmi_handler)) pr_err("Couldn't register NMI\n"); -#ifdef DEBUG_MACINTS - printk("mac_init_IRQ(): Done!\n"); -#endif } /* |