irq.h 570 B

1234567891011121314151617181920
  1. /*
  2. * irq.h: in kernel interrupt controller related definitions
  3. * Copyright (c) 2016 Red Hat, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This header is included by irqchip.c. However, on ARM, interrupt
  10. * controller declarations are located in include/kvm/arm_vgic.h since
  11. * they are mostly shared between arm and arm64.
  12. */
  13. #ifndef __IRQ_H
  14. #define __IRQ_H
  15. #include <kvm/arm_vgic.h>
  16. #endif