| Submitter | Eduardo Habkost |
|---|---|
| Date | Nov. 12, 2012, 9:38 p.m. |
| Message ID | <1352756342-13716-5-git-send-email-ehabkost@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/198474/ |
| State | New |
| Headers | show |
Comments
Patch
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),
There are no "cpudef" models, all of them are builtin, now. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> --- target-i386/cpu.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)