/* SPDX-License-Identifier: GPL-2.0-only */ /* This file is part of the coreboot project. */ #include #include void acpi_create_gnvs(global_nvs_t *gnvs) { /* The lid is open by default */ gnvs->lids = 1; gnvs->tcrt = CRITICAL_TEMPERATURE; gnvs->tpsv = PASSIVE_TEMPERATURE; }