svn commit: r221493 - stable/8/sys/dev/coretemp

[ Available lists | Index of svn-src-stable-8 | Month of May 2011 | Week of 5 May 2011 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Xin LI <delphij@FreeBSD.org>
Date
5 May 2011 12:52:06
Subject
svn commit: r221493 - stable/8/sys/dev/coretemp
Message-ID
201105051252.p45Cq6EE000116@svn.freebsd.org


[ Hide this part ]
Author: delphij
Date: Thu May 5 12:52:05 2011
New Revision: 221493
URL: http://svn.freebsd.org/changeset/base/221493

Log:
MFC r221335:

Correct a typo. According to Intel document 318914, the Tj(max) for Core 2
Duo Mobile CPUs should be 105.

Noticed by: Mark Johnston <markjdb gmail.com>

Modified:
stable/8/sys/dev/coretemp/coretemp.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)

Modified: stable/8/sys/dev/coretemp/coretemp.c
==============================================================================
--- stable/8/sys/dev/coretemp/coretemp.c Thu May 5 10:17:49 2011 (r221492)
+++ stable/8/sys/dev/coretemp/coretemp.c Thu May 5 12:52:05 2011 (r221493)
@@ -192,7 +192,7 @@ coretemp_attach(device_t dev)
} else if (cpu_model == 0x17) {
switch (cpu_stepping) {
case 0x6: /* Mobile Core 2 Duo */
- sc->sc_tjmax = 104;
+ sc->sc_tjmax = 105;
break;
default: /* Unknown stepping */
break;

Elapsed time: 0.074 seconds