diff options
Diffstat (limited to 'kernel/arch/s390/kvm/irq.h')
-rw-r--r-- | kernel/arch/s390/kvm/irq.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/kernel/arch/s390/kvm/irq.h b/kernel/arch/s390/kvm/irq.h new file mode 100644 index 000000000..d98e41596 --- /dev/null +++ b/kernel/arch/s390/kvm/irq.h @@ -0,0 +1,22 @@ +/* + * s390 irqchip routines + * + * Copyright IBM Corp. 2014 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License (version 2 only) + * as published by the Free Software Foundation. + * + * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com> + */ +#ifndef __KVM_IRQ_H +#define __KVM_IRQ_H + +#include <linux/kvm_host.h> + +static inline int irqchip_in_kernel(struct kvm *kvm) +{ + return 1; +} + +#endif |