summaryrefslogtreecommitdiffstats
path: root/src/mainboard/sapphire/pureplatinumh61
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2019-12-26 21:17:33 +0300
committerPatrick Georgi <pgeorgi@google.com>2019-12-31 15:21:19 +0000
commitd225834220cfbe59850a97092674c4d55faff757 (patch)
treee99a2674b526f5e5ec09061a1829e605e9d3a36d /src/mainboard/sapphire/pureplatinumh61
parent2450a7e72475fb98c3fa9d643cbc00f74f688fde (diff)
downloadcoreboot-d225834220cfbe59850a97092674c4d55faff757.tar.gz
coreboot-d225834220cfbe59850a97092674c4d55faff757.tar.bz2
coreboot-d225834220cfbe59850a97092674c4d55faff757.zip
mb/*/*/acpi_tables: Don't initialize already initialized fields
Don't initialize fields with zeroes since gnvs structs were zeroed out in southbridge already. See * src/southbridge/intel/*/lpc.c Change-Id: I5228f2cdc94df722ffa687c45b4e4fd25e82df82 Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37967 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/sapphire/pureplatinumh61')
-rw-r--r--src/mainboard/sapphire/pureplatinumh61/acpi_tables.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/sapphire/pureplatinumh61/acpi_tables.c b/src/mainboard/sapphire/pureplatinumh61/acpi_tables.c
index a790b0bea537..9c08af1ad449 100644
--- a/src/mainboard/sapphire/pureplatinumh61/acpi_tables.c
+++ b/src/mainboard/sapphire/pureplatinumh61/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;