mb/*/*/acpi_tables: Remove unnecessary function call
[coreboot.git] / src / mainboard / lenovo / x1_carbon_gen1 / acpi_tables.c
bloba6c103f74c917a563d1834389ccd38fced805303
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2007-2009 coresystems GmbH
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <southbridge/intel/bd82x6x/nvs.h>
17 #include "thermal.h"
19 void acpi_create_gnvs(global_nvs_t *gnvs)
21 /* Disable USB ports in S3 by default */
22 gnvs->s3u0 = 0;
23 gnvs->s3u1 = 0;
25 /* Disable USB ports in S5 by default */
26 gnvs->s5u0 = 0;
27 gnvs->s5u1 = 0;
29 // the lid is open by default.
30 gnvs->lids = 1;
32 gnvs->tcrt = CRITICAL_TEMPERATURE;
33 gnvs->tpsv = PASSIVE_TEMPERATURE;