Index: coretemp.c =================================================================== --- coretemp.c (revision 216236) +++ coretemp.c (working copy) @@ -178,8 +178,13 @@ */ sc->sc_tjmax = 100; - if ((cpu_model == 0xf && cpu_stepping >= 2) || cpu_model == 0xe) { + if (cpu_model == 0xf && cpu_stepping == 11) { /* + * Use 95C for stepping G0 + */ + sc->sc_tjmax = 95; + } else if ((cpu_model == 0xf && cpu_stepping >= 2) || cpu_model == 0xe) { + /* * On some Core 2 CPUs, there's an undocumented MSR that * can tell us if Tj(max) is 100 or 85. *