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

嵌入式Linux

开发平台:

Unix_Linux

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