summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTom Cosgrove <tom@cvs.openbsd.org>2007-02-17 11:51:22 +0000
committerTom Cosgrove <tom@cvs.openbsd.org>2007-02-17 11:51:22 +0000
commit1d99b33fa77c2d4ed77d3346e09597c91083af7a (patch)
tree1c64463eda9cf82eef651529640a4ed0d2486809 /sys/arch
parent30dd2645b9582745513add41fb2dc40024358773 (diff)
Fix spelling of Cool'n'Quiet, as done on i386 some time ago. Also
correct PowerNow in a couple of places.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/powernow-k8.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/amd64/amd64/powernow-k8.c b/sys/arch/amd64/amd64/powernow-k8.c
index 5a09a52c554..f60774d1cb2 100644
--- a/sys/arch/amd64/amd64/powernow-k8.c
+++ b/sys/arch/amd64/amd64/powernow-k8.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: powernow-k8.c,v 1.15 2006/12/20 22:48:29 gwk Exp $ */
+/* $OpenBSD: powernow-k8.c,v 1.16 2007/02/17 11:51:21 tom Exp $ */
/*
* Copyright (c) 2004 Martin Végiard.
* Copyright (c) 2004-2005 Bruno Ducrot
@@ -45,7 +45,7 @@
extern int setperf_prio;
/*
- * MSRs and bits used by Powernow technology
+ * MSRs and bits used by PowerNow technology
*/
#define MSR_AMDK7_FIDVID_CTL 0xc0010041
#define MSR_AMDK7_FIDVID_STATUS 0xc0010042
@@ -64,13 +64,13 @@ extern int setperf_prio;
#define PN8_STA_SVID(x) (((x) >> 40) & 0x1f)
#define PN8_STA_MVID(x) (((x) >> 48) & 0x1f)
-/* Reserved1 to powernow k8 configuration */
+/* Reserved1 to PowerNow K8 configuration */
#define PN8_PSB_TO_RVO(x) ((x) & 0x03)
#define PN8_PSB_TO_IRT(x) (((x) >> 2) & 0x03)
#define PN8_PSB_TO_MVS(x) (((x) >> 4) & 0x03)
#define PN8_PSB_TO_BATT(x) (((x) >> 6) & 0x03)
-/* ACPI ctr_val status register to powernow k8 configuration */
+/* ACPI ctr_val status register to PowerNow K8 configuration */
#define ACPI_PN8_CTRL_TO_FID(x) ((x) & 0x3f)
#define ACPI_PN8_CTRL_TO_VID(x) (((x) >> 6) & 0x1f)
#define ACPI_PN8_CTRL_TO_VST(x) (((x) >> 11) & 0x1f)
@@ -365,7 +365,7 @@ k8_powernow_init(void)
if (PN8_STA_SFID(status) != PN8_STA_MFID(status))
techname = "PowerNow! K8";
else
- techname = "Cool`n'Quiet K8";
+ techname = "Cool'n'Quiet K8";
/* Extended CPUID signature value */
CPUID(0x80000001, extcpuid, dummy, dummy, dummy);