From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45895) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TY1hg-0004If-UW for qemu-devel@nongnu.org; Mon, 12 Nov 2012 16:38:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TY1hd-0004ga-S0 for qemu-devel@nongnu.org; Mon, 12 Nov 2012 16:38:00 -0500 Received: from mx1.redhat.com ([209.132.183.28]:30896) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TY1hd-0004fu-IL for qemu-devel@nongnu.org; Mon, 12 Nov 2012 16:37:57 -0500 From: Eduardo Habkost Date: Mon, 12 Nov 2012 19:38:49 -0200 Message-Id: <1352756342-13716-5-git-send-email-ehabkost@redhat.com> In-Reply-To: <1352756342-13716-1-git-send-email-ehabkost@redhat.com> References: <1352756342-13716-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 04/17] target-i386: x86_cpudef_setup(): cosmetic change on comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Cc: Don Slutz There are no "cpudef" models, all of them are builtin, now. Signed-off-by: Eduardo Habkost --- 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