aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t60/acpi_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/lenovo/t60/acpi_tables.c')
-rw-r--r--src/mainboard/lenovo/t60/acpi_tables.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mainboard/lenovo/t60/acpi_tables.c b/src/mainboard/lenovo/t60/acpi_tables.c
index 46bb0d97fe..a0d493f763 100644
--- a/src/mainboard/lenovo/t60/acpi_tables.c
+++ b/src/mainboard/lenovo/t60/acpi_tables.c
@@ -15,7 +15,6 @@
*/
#include <southbridge/intel/i82801gx/nvs.h>
-#include "thermal.h"
void acpi_create_gnvs(global_nvs_t *gnvs)
{
@@ -23,6 +22,8 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
gnvs->cmap = 0x01;
gnvs->cmbp = 0x01;
- gnvs->tcrt = CRITICAL_TEMPERATURE;
- gnvs->tpsv = PASSIVE_TEMPERATURE;
+ /* Temperature at which OS will shutdown */
+ gnvs->tcrt = 100;
+ /* Temperature at which OS will throttle CPU */
+ gnvs->tpsv = 90;
}