summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-06-20 18:06:47 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-06-22 11:43:27 +0000
commit40b39430939c545b01736d8a3b0581b3e8f88340 (patch)
tree53d3fc9b3fcc73937128498b9b86cb53a1df8a71
parenteb86016570d0f7dde331d6df531f386bff590fb1 (diff)
downloadcoreboot-40b39430939c545b01736d8a3b0581b3e8f88340.tar.xz
soc/intel/broadwell/systemagent.c: Fix typo
Broadwell does not have any `TESGMB`, but it has a `TSEGMB`. Change-Id: Id25030aa86f2312e261eceb8b78c3878e9e0ee04 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42624 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
-rw-r--r--src/soc/intel/broadwell/systemagent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/broadwell/systemagent.c b/src/soc/intel/broadwell/systemagent.c
index b75c4fe7de..91816be680 100644
--- a/src/soc/intel/broadwell/systemagent.c
+++ b/src/soc/intel/broadwell/systemagent.c
@@ -250,7 +250,7 @@ static struct map_entry memory_map[NUM_MAP_ENTRIES] = {
[TOLUD_REG] = MAP_ENTRY_BASE_32(TOLUD, "TOLUD"),
[BDSM_REG] = MAP_ENTRY_BASE_32(BDSM, "BDSM"),
[BGSM_REG] = MAP_ENTRY_BASE_32(BGSM, "BGSM"),
- [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TESGMB"),
+ [TSEG_REG] = MAP_ENTRY_BASE_32(TSEG, "TSEGMB"),
};
static void mc_read_map_entries(struct device *dev, uint64_t *values)