From 4f9205be45ab84398e6ef3bb10af01b3f4a9cef7 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Fri, 30 Jul 2021 11:59:41 +0100 Subject: monitor: Use accel_find("kvm") instead of kvm_available() The kvm_available() function reports whether KVM support was compiled into the QEMU binary; it returns the value of the CONFIG_KVM define. The only place in the codebase where we use this function is in qmp_query_kvm(). Now that accelerators are based on QOM classes we can instead use accel_find("kvm") and remove the kvm_available() function. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Message-id: 20210730105947.28215-3-peter.maydell@linaro.org --- softmmu/arch_init.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'softmmu') diff --git a/softmmu/arch_init.c b/softmmu/arch_init.c index 3f4d7c1..9011af7 100644 --- a/softmmu/arch_init.c +++ b/softmmu/arch_init.c @@ -87,12 +87,3 @@ int graphic_depth = 32; #endif const uint32_t arch_type = QEMU_ARCH; - -int kvm_available(void) -{ -#ifdef CONFIG_KVM - return 1; -#else - return 0; -#endif -} -- cgit v1.1