diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-05-12 23:07:52 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-06 13:54:30 +0000 |
commit | cde4f3b2790d52ef38106c7ba91eea5d53e03a93 (patch) | |
tree | 72d65b1474c3115d336fae45d6a5990638dfaaef /src/soc/intel/baytrail | |
parent | a52b93b262582009decf924dbdde9bc1bf856ddb (diff) |
acpi/gnvs.c: Drop unused pointer to the cbmem console
Change-Id: I7e2018dbccead15fcd84e34df8207120d3a0c57c
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64303
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Tim Wawrzynczak <inforichland@gmail.com>
Diffstat (limited to 'src/soc/intel/baytrail')
-rw-r--r-- | src/soc/intel/baytrail/acpi/globalnvs.asl | 2 | ||||
-rw-r--r-- | src/soc/intel/baytrail/include/soc/nvs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/baytrail/acpi/globalnvs.asl b/src/soc/intel/baytrail/acpi/globalnvs.asl index 1654cd876f..0f6d480f4c 100644 --- a/src/soc/intel/baytrail/acpi/globalnvs.asl +++ b/src/soc/intel/baytrail/acpi/globalnvs.asl @@ -40,5 +40,5 @@ Field (GNVS, ByteAcc, NoLock, Preserve) Offset (0x30), , 32, /* 0x30 - CBMEM TOC */ , 32, /* 0x34 - Top of Low Memory */ - CBMC, 32, /* 0x38 - coreboot mem console pointer */ + , 32, /* 0x38 - coreboot mem console pointer */ } diff --git a/src/soc/intel/baytrail/include/soc/nvs.h b/src/soc/intel/baytrail/include/soc/nvs.h index 35308cd352..56527617f8 100644 --- a/src/soc/intel/baytrail/include/soc/nvs.h +++ b/src/soc/intel/baytrail/include/soc/nvs.h @@ -42,7 +42,7 @@ struct __packed global_nvs { /* Base Addresses */ u32 obsolete_cmem; /* 0x30 - CBMEM TOC */ u32 tolm; /* 0x34 - Top of Low Memory */ - u32 cbmc; /* 0x38 - coreboot memconsole */ + u32 unused_was_cbmc; /* 0x38 - coreboot memconsole */ }; #endif /* _BAYTRAIL_NVS_H_ */ |