mb/**/acpi_tables.c: Drop lid settings on desktops

Unlike laptops and some trash cans, desktop boards do not have a lid.

Change-Id: I5f947e411a4c9295a294f55771cd123de6b1e702
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37993
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Angel Pons 2019-12-30 00:45:22 +01:00 committed by Patrick Georgi
parent c732d689ac
commit ff08188839
3 changed files with 0 additions and 9 deletions

View File

@ -19,9 +19,6 @@
void acpi_create_gnvs(global_nvs_t *gnvs) void acpi_create_gnvs(global_nvs_t *gnvs)
{ {
// the lid is open by default.
gnvs->lids = 1;
gnvs->tcrt = 100; gnvs->tcrt = 100;
gnvs->tpsv = 90; gnvs->tpsv = 90;
} }

View File

@ -28,9 +28,6 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
gnvs->s5u0 = 1; gnvs->s5u0 = 1;
gnvs->s5u1 = 1; gnvs->s5u1 = 1;
// No LID: open by default.
gnvs->lids = 1;
gnvs->tcrt = CRITICAL_TEMPERATURE; gnvs->tcrt = CRITICAL_TEMPERATURE;
gnvs->tpsv = PASSIVE_TEMPERATURE; gnvs->tpsv = PASSIVE_TEMPERATURE;
} }

View File

@ -18,9 +18,6 @@
void acpi_create_gnvs(global_nvs_t *gnvs) void acpi_create_gnvs(global_nvs_t *gnvs)
{ {
// the lid is open by default.
gnvs->lids = 1;
gnvs->tcrt = 100; gnvs->tcrt = 100;
gnvs->tpsv = 90; gnvs->tpsv = 90;
} }