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>
This commit is contained in:
Angel Pons 2020-06-20 18:06:47 +02:00 committed by Patrick Georgi
parent eb86016570
commit 40b3943093
1 changed files with 1 additions and 1 deletions

View File

@ -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)