diff options
Diffstat (limited to 'src/mainboard/lenovo/t440p')
-rw-r--r-- | src/mainboard/lenovo/t440p/acpi_tables.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mainboard/lenovo/t440p/acpi_tables.c b/src/mainboard/lenovo/t440p/acpi_tables.c index ff6c05ae0bef..5105053d8af7 100644 --- a/src/mainboard/lenovo/t440p/acpi_tables.c +++ b/src/mainboard/lenovo/t440p/acpi_tables.c @@ -19,9 +19,11 @@ void acpi_create_gnvs(global_nvs_t *gnvs) { - /* the lid is open by default */ + /* The lid is open by default. */ gnvs->lids = 1; + /* Temperature at which OS will shutdown. */ gnvs->tcrt = 100; + /* Temperature at which OS will throttle CPU. */ gnvs->tpsv = 90; } |