summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/x230
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2019-12-26 21:17:33 +0300
committerPatrick Rudolph <siro@das-labor.org>2019-12-28 09:56:50 +0000
commita76cf28279bee4359991c429fe00ccb514cc8d00 (patch)
tree72b55268fbf1e6da80e27424e1b1a8aa87af47ec /src/mainboard/lenovo/x230
parent0acfe1c8cd9a64bf1733e53898978d3853eab468 (diff)
downloadcoreboot-a76cf28279bee4359991c429fe00ccb514cc8d00.tar.xz
mb/lenovo/*/acpi_tables: Don't initialize already initialized fields
Don't initialize fields with zeroes since gnvs structs were zeroed out in southbridge already. Change-Id: I2ccf4699ba3ed3f5b9402c0340153d4a5bf82682 Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37938 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/lenovo/x230')
-rw-r--r--src/mainboard/lenovo/x230/acpi_tables.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/lenovo/x230/acpi_tables.c b/src/mainboard/lenovo/x230/acpi_tables.c
index a6c103f74c..e2d9814ca0 100644
--- a/src/mainboard/lenovo/x230/acpi_tables.c
+++ b/src/mainboard/lenovo/x230/acpi_tables.c
@@ -18,14 +18,6 @@
void acpi_create_gnvs(global_nvs_t *gnvs)
{
- /* Disable USB ports in S3 by default */
- gnvs->s3u0 = 0;
- gnvs->s3u1 = 0;
-
- /* Disable USB ports in S5 by default */
- gnvs->s5u0 = 0;
- gnvs->s5u1 = 0;
-
// the lid is open by default.
gnvs->lids = 1;