summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-05-23 12:01:53 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-05-26 11:56:38 +0000
commit0cda8d2c5081b012795491354971f5cbda025ac8 (patch)
tree1f11c3ee03b56a612116fa92374883a70ab7c24f /src/mainboard/lenovo
parenta17ffd264003027fc212a29118a115ae78caf62b (diff)
mb/lenovo/t430: Do not set unused GNVS fields
ACPI code for this mainboard uses none of these values. Change-Id: I429bf8dc229fd830ae662034a8b733c9ee669140 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54851 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo')
-rw-r--r--src/mainboard/lenovo/t430/acpi_tables.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mainboard/lenovo/t430/acpi_tables.c b/src/mainboard/lenovo/t430/acpi_tables.c
index 43c73025f2..36d3e85c1e 100644
--- a/src/mainboard/lenovo/t430/acpi_tables.c
+++ b/src/mainboard/lenovo/t430/acpi_tables.c
@@ -8,14 +8,8 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
/* The lid is open by default */
gnvs->lids = 1;
- /* Config TDP Down */
- gnvs->f0of = 80;
- gnvs->f0on = 90;
-
/* Temperature at which OS will shutdown */
gnvs->tcrt = 100;
/* Temperature at which OS will throttle CPU */
gnvs->tpsv = 90;
- /* Tj_max value for calculating PECI CPU temperature */
- gnvs->tmax = 105;
}