/* * Copyright 2001 MontaVista Software Inc. * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net * * init_IRQ for aloha. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * */ #include #include #include #include #include #include #include #include #include #include #include extern void breakpoint(void); extern int setup_irq(unsigned int irq, struct irqaction *irqaction); void __init init_IRQ(void) { /* we are not doing much right now !!! */ return; /* set_except_vector(0, aloha_handle_irq); */ #ifdef CONFIG_REMOTE_DEBUG printk("Setting debug traps - please connect the remote debugger.\n"); set_debug_traps(); breakpoint(); #endif }