svn commit: r221335 - head/sys/dev/coretemp

Xin LI delphij at FreeBSD.org
Mon May 2 18:41:54 UTC 2011


Author: delphij
Date: Mon May  2 18:41:54 2011
New Revision: 221335
URL: http://svn.freebsd.org/changeset/base/221335

Log:
  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>
  MFC after:	3 days

Modified:
  head/sys/dev/coretemp/coretemp.c

Modified: head/sys/dev/coretemp/coretemp.c
==============================================================================
--- head/sys/dev/coretemp/coretemp.c	Mon May  2 17:49:05 2011	(r221334)
+++ head/sys/dev/coretemp/coretemp.c	Mon May  2 18:41:54 2011	(r221335)
@@ -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;


More information about the svn-src-all mailing list