irq.h 815 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * arch/arm/include/asm/mach/irq.h
  3. *
  4. * Copyright (C) 1995-2000 Russell King.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef __ASM_ARM_MACH_IRQ_H
  11. #define __ASM_ARM_MACH_IRQ_H
  12. #include <linux/irq.h>
  13. struct seq_file;
  14. /*
  15. * This is internal. Do not use it.
  16. */
  17. extern unsigned int arch_nr_irqs;
  18. extern void (*init_arch_irq)(void);
  19. extern void init_FIQ(void);
  20. extern int show_fiq_list(struct seq_file *, void *);
  21. /*
  22. * This is for easy migration, but should be changed in the source
  23. */
  24. #define do_bad_IRQ(irq,desc) \
  25. do { \
  26. raw_spin_lock(&desc->lock); \
  27. handle_bad_irq(irq, desc); \
  28. raw_spin_unlock(&desc->lock); \
  29. } while(0)
  30. #endif