irq.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  * arch/mips/ddb5xxx/common/irq.c
  6.  *     Common irq code for DDB boards.  This really should belong
  7.  * arch/mips/kernel/irq.c.  Need to talk to Ralf.
  8.  *
  9.  * This program is free software; you can redistribute  it and/or modify it
  10.  * under  the terms of  the GNU General  Public License as published by the
  11.  * Free Software Foundation;  either version 2 of the  License, or (at your
  12.  * option) any later version.
  13.  */
  14. #include <linux/config.h>
  15. #include <linux/init.h>
  16. void (*irq_setup)(void);
  17. void __init init_IRQ(void)
  18. {
  19. #ifdef CONFIG_REMOTE_DEBUG
  20. extern void breakpoint(void);
  21. extern void set_debug_traps(void);
  22. printk("Wait for gdb client connection ...n");
  23. set_debug_traps();
  24. breakpoint();
  25. #endif
  26. /* invoke board-specific irq setup */
  27. irq_setup();
  28. }