Module Name:    src
Committed By:   msaitoh
Date:           Fri Mar 22 04:39:03 UTC 2019

Modified Files:
        src/usr.sbin/cpuctl/arch: i386.c

Log Message:
 s/TGC/TCG/. Not Tokyo Game Show but Tiny Code Generator.


To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.94 src/usr.sbin/cpuctl/arch/i386.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/cpuctl/arch/i386.c
diff -u src/usr.sbin/cpuctl/arch/i386.c:1.93 src/usr.sbin/cpuctl/arch/i386.c:1.94
--- src/usr.sbin/cpuctl/arch/i386.c:1.93	Fri Mar 22 02:33:08 2019
+++ src/usr.sbin/cpuctl/arch/i386.c	Fri Mar 22 04:39:02 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: i386.c,v 1.93 2019/03/22 02:33:08 msaitoh Exp $	*/
+/*	$NetBSD: i386.c,v 1.94 2019/03/22 04:39:02 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: i386.c,v 1.93 2019/03/22 02:33:08 msaitoh Exp $");
+__RCSID("$NetBSD: i386.c,v 1.94 2019/03/22 04:39:02 msaitoh Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -1718,7 +1718,7 @@ cpu_probe_hv_features(struct cpu_info *c
 		 * ------------+--------------
 		 * KVM		"KVMKVMKVM"
 		 * Microsoft	"Microsoft Hv"
-		 * QEMU(TGC)	"TCGTCGTCGTCG"
+		 * QEMU(TCG)	"TCGTCGTCGTCG"
 		 * VMware	"VMwareVMware"
 		 * Xen		"XenVMMXenVMM"
 		 * NetBSD	"___ NVMM ___"
@@ -1728,7 +1728,7 @@ cpu_probe_hv_features(struct cpu_info *c
 		else if (strncmp(hv_sig, "Microsoft Hv", 12) == 0)
 			hv_name = "Hyper-V";
 		else if (strncmp(hv_sig, "TCGTCGTCGTCG", 12) == 0)
-			hv_name = "QEMU(TGC)";
+			hv_name = "QEMU(TCG)";
 		else if (strncmp(hv_sig, "VMwareVMware", 12) == 0)
 			hv_name = "VMware";
 		else if (strncmp(hv_sig, "XenVMMXenVMM", 12) == 0)

Reply via email to