Done with sed and God Lines. Only done for C-like code for now. Change-Id: I32c5f5e865b5455ddb7034612ecea1383932cef9 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40066 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Maxim Polyakov <max.senia.poliak@gmail.com>
11 lines
221 B
C
11 lines
221 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <southbridge/intel/bd82x6x/nvs.h>
|
|
|
|
void acpi_create_gnvs(global_nvs_t *gnvs)
|
|
{
|
|
gnvs->tcrt = 100;
|
|
gnvs->tpsv = 90;
|
|
}
|