aboutsummaryrefslogtreecommitdiff
path: root/util/autoport/bd82x6x.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/autoport/bd82x6x.go')
-rw-r--r--util/autoport/bd82x6x.go10
1 files changed, 2 insertions, 8 deletions
diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go
index 4ee008500e..5d943e43fe 100644
--- a/util/autoport/bd82x6x.go
+++ b/util/autoport/bd82x6x.go
@@ -364,18 +364,12 @@ void mainboard_get_spd(spd_raw_data *spd, bool id_only)
/* FIXME: check this function. */
void acpi_create_gnvs(struct global_nvs *gnvs)
{
- /* Disable USB ports in S3 by default */
- gnvs->s3u0 = 0;
- gnvs->s3u1 = 0;
-
- /* Disable USB ports in S5 by default */
- gnvs->s5u0 = 0;
- gnvs->s5u1 = 0;
-
/* 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;
}
`)