There are no "cpudef" models, all of them are builtin, now. Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> --- target-i386/cpu.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 2dfcc9c..73b0fa1 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1539,8 +1539,7 @@ void x86_cpudef_setup(void) X86CPUDefinition *def = &builtin_x86_defs[i]; def->next = x86_defs; - /* Look for specific "cpudef" models that */ - /* have the QEMU version in .model_id */ + /* Look for specific models that have the QEMU version in .model_id */ for (j = 0; j < ARRAY_SIZE(model_with_versions); j++) { if (strcmp(model_with_versions[j], def->name) == 0) { pstrcpy(def->model_id, sizeof(def->model_id), -- 1.7.11.7