mirror of
https://github.com/mborgerson/xemu.git
synced 2026-03-13 09:04:45 +00:00
The implementation of host_cpu_max_instance_init() was merged into
host_cpu_instance_init() by commit 29f1ba338b ("target/i386: merge
host_cpu_instance_init() and host_cpu_max_instance_init()"), while the
declaration of it remains in host-cpu.h.
Clean it up.
Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Link: https://lore.kernel.org/r/20250716063117.602050-1-xiaoyao.li@intel.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
21 lines
534 B
C
21 lines
534 B
C
/*
|
|
* x86 host CPU type initialization and host CPU functions
|
|
*
|
|
* Copyright 2021 SUSE LLC
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef HOST_CPU_H
|
|
#define HOST_CPU_H
|
|
|
|
uint32_t host_cpu_phys_bits(void);
|
|
void host_cpu_instance_init(X86CPU *cpu);
|
|
bool host_cpu_realizefn(CPUState *cs, Error **errp);
|
|
|
|
void host_cpu_vendor_fms(char *vendor, int *family, int *model, int *stepping);
|
|
|
|
bool is_host_cpu_intel(void);
|
|
#endif /* HOST_CPU_H */
|