diff options
author | Peter Lemenkov <lemenkov@gmail.com> | 2019-10-21 21:42:17 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-12-27 09:09:02 +0000 |
commit | 6c2c018e15a1c4d3ae394333263e6c7c3eb30415 (patch) | |
tree | 832792ac36f7b5ce890e001fee96639cbbecd6c3 /src/mainboard/google/jecht | |
parent | 1fe7dcb047d157de79acafedaab0fe98408aeafc (diff) | |
download | coreboot-6c2c018e15a1c4d3ae394333263e6c7c3eb30415.tar.xz |
mb/*/*/acpi_tables: Remove unnecessary function call
Remove acpi_update_thermal_table local function.
Change-Id: I4857348088feb8eaf1dd7f553c4efb29da8943cf
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36212
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/google/jecht')
-rw-r--r-- | src/mainboard/google/jecht/acpi_tables.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/mainboard/google/jecht/acpi_tables.c b/src/mainboard/google/jecht/acpi_tables.c index 445f03771c..48b7a36797 100644 --- a/src/mainboard/google/jecht/acpi_tables.c +++ b/src/mainboard/google/jecht/acpi_tables.c @@ -22,15 +22,6 @@ #include <soc/nvs.h> #include <variant/thermal.h> -static void acpi_update_thermal_table(global_nvs_t *gnvs) -{ - gnvs->tmps = TEMPERATURE_SENSOR_ID; - gnvs->tcrt = CRITICAL_TEMPERATURE; - gnvs->tpsv = PASSIVE_TEMPERATURE; - gnvs->tmax = MAX_TEMPERATURE; - gnvs->flvl = 1; -} - void acpi_create_gnvs(global_nvs_t *gnvs) { acpi_init_gnvs(gnvs); @@ -41,7 +32,11 @@ void acpi_create_gnvs(global_nvs_t *gnvs) /* Disable USB ports in S5 */ gnvs->s5u0 = 0; - acpi_update_thermal_table(gnvs); + gnvs->tmps = TEMPERATURE_SENSOR_ID; + gnvs->tcrt = CRITICAL_TEMPERATURE; + gnvs->tpsv = PASSIVE_TEMPERATURE; + gnvs->tmax = MAX_TEMPERATURE; + gnvs->flvl = 1; } unsigned long acpi_fill_madt(unsigned long current) |