irq.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_ARM_IRQ_H
  2. #define __ASM_ARM_IRQ_H
  3. #include <asm/arch/irqs.h>
  4. #ifndef irq_cannonicalize
  5. #define irq_cannonicalize(i) (i)
  6. #endif
  7. #ifndef NR_IRQS
  8. #define NR_IRQS 128
  9. #endif
  10. /*
  11.  * Use this value to indicate lack of interrupt
  12.  * capability
  13.  */
  14. #ifndef NO_IRQ
  15. #define NO_IRQ ((unsigned int)(-1))
  16. #endif
  17. #define disable_irq_nosync(i) disable_irq(i)
  18. extern void disable_irq(unsigned int);
  19. extern void enable_irq(unsigned int);
  20. #endif