summaryrefslogtreecommitdiff
path: root/hw/pc.c
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2013-02-15 14:06:56 +0100
committerAndreas Färber <afaerber@suse.de>2013-02-16 14:51:01 +0100
commit2d64255bd7c0d3933ff5ab2cabff11bcb09117a8 (patch)
tree0694e96a3a974cb7ecb26624301b3d1479dd675c /hw/pc.c
parent5c3c6a682dedb3ef6becf112867cf92abf203816 (diff)
downloadqemu-2d64255bd7c0d3933ff5ab2cabff11bcb09117a8.tar.gz
target-i386: Split command line parsing out of cpu_x86_register()
In order to instantiate a CPU subtype we will need to know which type, so move the cpu_model splitting into cpu_x86_init(). Parameters need to be set on the X86CPU instance, so move cpu_x86_parse_featurestr() into cpu_x86_init() as well. This leaves cpu_x86_register() operating on the model name only. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/pc.c')
-rw-r--r--hw/pc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/pc.c b/hw/pc.c
index 53cc173eb2..07caba78ba 100644
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -876,7 +876,6 @@ void pc_cpus_init(const char *cpu_model)
for (i = 0; i < smp_cpus; i++) {
if (!cpu_x86_init(cpu_model)) {
- fprintf(stderr, "Unable to find x86 CPU definition\n");
exit(1);
}
}