diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2013-07-26 17:09:35 -0300 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-07-29 15:29:16 +0200 |
commit | c139911261c5acc9dae56b1180db320ba25636bd (patch) | |
tree | 788efc3ff5f2641fa87ae0febbb2de8c4b2b5e5e /target-i386 | |
parent | 14a10fc39923b3af07c8c46d22cb20843bee3a72 (diff) | |
download | qemu-c139911261c5acc9dae56b1180db320ba25636bd.tar.gz qemu-c139911261c5acc9dae56b1180db320ba25636bd.tar.bz2 qemu-c139911261c5acc9dae56b1180db320ba25636bd.zip |
target-i386: Pass X86CPU object to cpu_x86_find_by_name()
This will help us change the initialization code to not require carrying
some intermediate values in a x86_def_t struct (and eventually kill the
x86_def_t struct entirely).
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index df2fb1bc1b..80143bf87a 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1475,7 +1475,8 @@ static void x86_cpu_get_feature_words(Object *obj, Visitor *v, void *opaque, error_propagate(errp, err); } -static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *name) +static int cpu_x86_find_by_name(X86CPU *cpu, x86_def_t *x86_cpu_def, + const char *name) { x86_def_t *def; int i; @@ -1742,7 +1743,7 @@ static void cpu_x86_register(X86CPU *cpu, const char *name, Error **errp) memset(def, 0, sizeof(*def)); - if (cpu_x86_find_by_name(def, name) < 0) { + if (cpu_x86_find_by_name(cpu, def, name) < 0) { error_setg(errp, "Unable to find CPU definition: %s", name); return; } |