diff options
author | Angel Pons <th3fanbus@gmail.com> | 2019-12-30 00:45:22 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-01-02 14:36:07 +0000 |
commit | ff081888394489a99b1cce87a2ca6ab989c8500f (patch) | |
tree | 2d88f545997b5e8a8dfda2b4b1d818946b6d1ecd /src/mainboard/intel | |
parent | c732d689ac11f8981d9fe31889c612b85ce542f7 (diff) | |
download | coreboot-ff081888394489a99b1cce87a2ca6ab989c8500f.tar.xz |
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>
Diffstat (limited to 'src/mainboard/intel')
-rw-r--r-- | src/mainboard/intel/dcp847ske/acpi_tables.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainboard/intel/dcp847ske/acpi_tables.c b/src/mainboard/intel/dcp847ske/acpi_tables.c index 88c7019a2a..0d9c2c55bb 100644 --- a/src/mainboard/intel/dcp847ske/acpi_tables.c +++ b/src/mainboard/intel/dcp847ske/acpi_tables.c @@ -28,9 +28,6 @@ void acpi_create_gnvs(global_nvs_t *gnvs) gnvs->s5u0 = 1; gnvs->s5u1 = 1; - // No LID: open by default. - gnvs->lids = 1; - gnvs->tcrt = CRITICAL_TEMPERATURE; gnvs->tpsv = PASSIVE_TEMPERATURE; } |