diff options
author | Joel Kitching <kitching@google.com> | 2018-08-17 15:15:02 +0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-08-22 15:32:30 +0000 |
commit | 5846d5727a05e395d13317daba049e0e56e15d33 (patch) | |
tree | 51f9e3027b8708891dabd9351bd45092de3f3581 /src/soc/intel/common/block | |
parent | 8f560d9b9c20c7e72b031e60cf0e828d7d27ec8e (diff) |
acpi: remove CBMEM_ID_ACPI_GNVS_PTR entry
Since we can retrieve the address of ACPI GNVS directly
from CBMEM_ID_ACPI_GNVS, there is no need to store and
update a pointer separately.
TEST=Compile and run on Eve
Signed-off-by: Joel Kitching <kitching@google.com>
Change-Id: I59f3d0547a4a724e66617c791ad82c9f504cadea
Reviewed-on: https://review.coreboot.org/28189
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/block')
-rw-r--r-- | src/soc/intel/common/block/acpi/acpi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/acpi/acpi.c b/src/soc/intel/common/block/acpi/acpi.c index dd42f76d33..ae645a5e3e 100644 --- a/src/soc/intel/common/block/acpi/acpi.c +++ b/src/soc/intel/common/block/acpi/acpi.c @@ -237,7 +237,6 @@ void southbridge_inject_dsdt(struct device *device) if (gnvs) { acpi_create_gnvs(gnvs); - acpi_save_gnvs((uintptr_t) gnvs); /* And tell SMI about it */ smm_setup_structures(gnvs, NULL, NULL); |