blob: cdc3d9962a9b2932e9de0fd5a24f1a8a31194837 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <southbridge/intel/bd82x6x/nvs.h>
void acpi_create_gnvs(global_nvs_t *gnvs)
{
gnvs->tcrt = 100;
gnvs->tpsv = 90;
}
|