From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59552) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShCB2-0003Vp-JI for qemu-devel@nongnu.org; Wed, 20 Jun 2012 00:05:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ShCB0-0001xy-Tj for qemu-devel@nongnu.org; Wed, 20 Jun 2012 00:05:56 -0400 From: Stefan Weil Date: Wed, 20 Jun 2012 06:05:51 +0200 Message-Id: <1340165151-30936-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH] target-i386: Use QEMU instead of Qemu List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial Cc: Stefan Weil , qemu-devel@nongnu.org This new 'QEmu' was recently added. Replace it by the official all upper case 'QEMU'. Signed-off-by: Stefan Weil --- Hopefully those 'Qemu' and 'QEmu' variants will stop as soon as my patch for checkpatch.pl was applied. target-i386/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index fdd95be..5521709 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1303,7 +1303,7 @@ void x86_cpudef_setup(void) builtin_x86_defs[i].flags = 1; /* Look for specific "cpudef" models that */ - /* have the QEmu version in .model_id */ + /* have the QEMU version in .model_id */ for (j = 0; j < ARRAY_SIZE(model_with_versions); j++) { if (strcmp(model_with_versions[j], builtin_x86_defs[i].name) == 0) { pstrcpy(builtin_x86_defs[i].model_id, sizeof(builtin_x86_defs[i].model_id), "QEMU Virtual CPU version "); -- 1.7.10