2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
/*
|
|
|
|
|
* irq.h: in kernel interrupt controller related definitions
|
|
|
|
|
*/
|
|
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
#ifndef _SW64_KVM_IRQ_H
|
|
|
|
|
#define _SW64_KVM_IRQ_H
|
2026-01-21 18:59:54 +08:00
|
|
|
static inline int irqchip_in_kernel(struct kvm *kvm)
|
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2026-01-29 22:25:33 +08:00
|
|
|
#endif /* _SW64_KVM_IRQ_H */
|