summaryrefslogtreecommitdiff
path: root/src/mainboard/google/parrot/acpi_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/parrot/acpi_tables.c')
-rw-r--r--src/mainboard/google/parrot/acpi_tables.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/mainboard/google/parrot/acpi_tables.c b/src/mainboard/google/parrot/acpi_tables.c
index e92734da1a..bd7df70cb0 100644
--- a/src/mainboard/google/parrot/acpi_tables.c
+++ b/src/mainboard/google/parrot/acpi_tables.c
@@ -26,13 +26,6 @@
#include "thermal.h"
#include "onboard.h"
-static void acpi_update_thermal_table(global_nvs_t *gnvs)
-{
- /* EC handles all active thermal and fan control on Parrot. */
- gnvs->tcrt = CRITICAL_TEMPERATURE;
- gnvs->tpsv = PASSIVE_TEMPERATURE;
-}
-
void acpi_create_gnvs(global_nvs_t *gnvs)
{
/* Disable USB ports in S3 by default */
@@ -49,7 +42,9 @@ void acpi_create_gnvs(global_nvs_t *gnvs)
ACTIVE_ECFW_RO : ACTIVE_ECFW_RW;
#endif
- acpi_update_thermal_table(gnvs);
+ /* EC handles all active thermal and fan control on Parrot. */
+ gnvs->tcrt = CRITICAL_TEMPERATURE;
+ gnvs->tpsv = PASSIVE_TEMPERATURE;
// the lid is open by default.
gnvs->lids = 1;