vfio-ccw: Permit missing IRQs
[qemu/ar7.git] / include / sysemu / nvmm.h
blob6d216599b099d2cdddbd37dde72d12baa2d0c0df
1 /*
2 * Copyright (c) 2018-2019 Maxime Villard, All rights reserved.
4 * NetBSD Virtual Machine Monitor (NVMM) accelerator support.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #ifndef QEMU_NVMM_H
11 #define QEMU_NVMM_H
13 #include "config-host.h"
14 #include "qemu-common.h"
16 #ifdef CONFIG_NVMM
18 int nvmm_enabled(void);
20 #else /* CONFIG_NVMM */
22 #define nvmm_enabled() (0)
24 #endif /* CONFIG_NVMM */
26 #endif /* CONFIG_NVMM */