[Midnightbsd-cvs] src [7758] trunk/sys/dev/coretemp/coretemp.c: some intel cpus run at 110 max
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Aug 21 00:36:26 EDT 2016
Revision: 7758
http://svnweb.midnightbsd.org/src/?rev=7758
Author: laffer1
Date: 2016-08-21 00:36:26 -0400 (Sun, 21 Aug 2016)
Log Message:
-----------
some intel cpus run at 110 max
Modified Paths:
--------------
trunk/sys/dev/coretemp/coretemp.c
Modified: trunk/sys/dev/coretemp/coretemp.c
===================================================================
--- trunk/sys/dev/coretemp/coretemp.c 2016-08-21 04:35:19 UTC (rev 7757)
+++ trunk/sys/dev/coretemp/coretemp.c 2016-08-21 04:36:26 UTC (rev 7758)
@@ -227,12 +227,12 @@
* these numbers are, with the publicly available
* documents from Intel.
*
- * For now, we consider [70, 100]C range, as
+ * For now, we consider [70, 110]C range, as
* described in #322683, as "reasonable" and accept
* these values whenever the MSR is available for
* read, regardless the CPU model.
*/
- if (tjtarget >= 70 && tjtarget <= 100)
+ if (tjtarget >= 70 && tjtarget <= 110)
sc->sc_tjmax = tjtarget;
else
device_printf(dev, "Tj(target) value %d "
More information about the Midnightbsd-cvs
mailing list