diff options
author | Thomas Huth <thuth@redhat.com> | 2021-04-14 13:20:01 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-05-14 12:31:44 +0200 |
commit | 13b48fb00e61dc7662da27c020c3263b74374acc (patch) | |
tree | bf224ed53d0abd78b3e3eceb5f35d2c564a6fbd8 /include/sysemu/whpx.h | |
parent | bfaa3b05a9af6acd011e772fa42eff5d05424a35 (diff) | |
download | qemu-13b48fb00e61dc7662da27c020c3263b74374acc.zip qemu-13b48fb00e61dc7662da27c020c3263b74374acc.tar.gz qemu-13b48fb00e61dc7662da27c020c3263b74374acc.tar.bz2 |
include/sysemu: Poison all accelerator CONFIG switches in common code
We are already poisoning CONFIG_KVM since this switch is not working
in common code. Do the same with the other accelerator switches, too
(except for CONFIG_TCG, which is special, since it is also defined in
config-host.h).
Message-Id: <20210414112004.943383-2-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/sysemu/whpx.h')
-rw-r--r-- | include/sysemu/whpx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sysemu/whpx.h b/include/sysemu/whpx.h index 8ca1c1c..2889fa2 100644 --- a/include/sysemu/whpx.h +++ b/include/sysemu/whpx.h @@ -13,6 +13,8 @@ #ifndef QEMU_WHPX_H #define QEMU_WHPX_H +#ifdef NEED_CPU_H + #ifdef CONFIG_WHPX int whpx_enabled(void); @@ -25,4 +27,6 @@ bool whpx_apic_in_platform(void); #endif /* CONFIG_WHPX */ +#endif /* NEED_CPU_H */ + #endif /* QEMU_WHPX_H */ |