summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2007-05-29 07:35:56 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2007-05-29 07:35:56 +0000
commit7e9810fed17b3959f300ac0b99add3b5c6d10768 (patch)
treefa7af20fe2bc5db1738f75dda743ee09d2c0a5de /sys/arch
parentf113f80407e774118cc0eb5958727ca4350b3f40 (diff)
theo says degrees is spelled degrees
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/identcpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/identcpu.c b/sys/arch/amd64/amd64/identcpu.c
index 0dbf1949607..ade0a360b9a 100644
--- a/sys/arch/amd64/amd64/identcpu.c
+++ b/sys/arch/amd64/amd64/identcpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: identcpu.c,v 1.13 2007/05/29 06:31:44 tedu Exp $ */
+/* $OpenBSD: identcpu.c,v 1.14 2007/05/29 07:35:55 tedu Exp $ */
/* $NetBSD: identcpu.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $ */
/*
@@ -134,7 +134,7 @@ intelcore_update_sensor(void *args)
msr = rdmsr(MSR_THERM_STATUS);
if (msr & MSR_THERM_STATUS_VALID_BIT) {
ci->ci_sensor.value = max - MSR_THERM_STATUS_TEMP(msr);
- /* micro degress */
+ /* micro degrees */
ci->ci_sensor.value *= 1000000;
/* kelvin */
ci->ci_sensor.value += 273150000;