summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t400/acpi_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/lenovo/t400/acpi_tables.c')
-rw-r--r--src/mainboard/lenovo/t400/acpi_tables.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mainboard/lenovo/t400/acpi_tables.c b/src/mainboard/lenovo/t400/acpi_tables.c
index 6fed293f78..0e43081a43 100644
--- a/src/mainboard/lenovo/t400/acpi_tables.c
+++ b/src/mainboard/lenovo/t400/acpi_tables.c
@@ -20,7 +20,6 @@
#include <arch/smp/mpspec.h>
#include <device/device.h>
#include <southbridge/intel/i82801ix/nvs.h>
-#include "thermal.h"
void acpi_create_gnvs(global_nvs_t *gnvs)
{
@@ -31,8 +30,10 @@ 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;
}
unsigned long acpi_fill_madt(unsigned long current)