mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
target-i386: Rename cpu_x86_init() to cpu_x86_init_user()
The function is used only for CONFIG_USER, so make its purpose clear. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
8a3f75b39d
commit
644dba250a
2 changed files with 3 additions and 3 deletions
|
@ -982,7 +982,7 @@ typedef struct CPUX86State {
|
|||
|
||||
#include "cpu-qom.h"
|
||||
|
||||
X86CPU *cpu_x86_init(const char *cpu_model);
|
||||
X86CPU *cpu_x86_init_user(const char *cpu_model);
|
||||
X86CPU *cpu_x86_create(const char *cpu_model, DeviceState *icc_bridge,
|
||||
Error **errp);
|
||||
int cpu_x86_exec(CPUX86State *s);
|
||||
|
@ -1173,7 +1173,7 @@ uint64_t cpu_get_tsc(CPUX86State *env);
|
|||
|
||||
static inline CPUX86State *cpu_init(const char *cpu_model)
|
||||
{
|
||||
X86CPU *cpu = cpu_x86_init(cpu_model);
|
||||
X86CPU *cpu = cpu_x86_init_user(cpu_model);
|
||||
if (cpu == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue