irq.h 309 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * s390 irqchip routines
  4. *
  5. * Copyright IBM Corp. 2014
  6. *
  7. * Author(s): Cornelia Huck <[email protected]>
  8. */
  9. #ifndef __KVM_IRQ_H
  10. #define __KVM_IRQ_H
  11. #include <linux/kvm_host.h>
  12. static inline int irqchip_in_kernel(struct kvm *kvm)
  13. {
  14. return 1;
  15. }
  16. #endif