diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2023-03-08 14:52:35 -0500 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2023-03-13 14:01:58 +0000 |
commit | d8df2b777364862a920b09165b7877317e39a795 (patch) | |
tree | 1c46fbd0affbf77608ee654f1f80eb9632efee80 /src/soc/amd/phoenix/mca.c | |
parent | 2f6f487c3cda8fc7d698fa1e08fd656fe1d3433b (diff) |
soc/amd/phoenix/mca.c: Remove excess MCA bank names
Documentation and hardware differ in the number of MCA bank names, so
remove the excess ones to prevent a "CPU has an unexpected number of MCA
banks!" warning message.
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Change-Id: I75a2348561833f3f19181b4f30a6971ecb317899
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73650
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/phoenix/mca.c')
-rw-r--r-- | src/soc/amd/phoenix/mca.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/soc/amd/phoenix/mca.c b/src/soc/amd/phoenix/mca.c index 63b040b25e..ccbb360769 100644 --- a/src/soc/amd/phoenix/mca.c +++ b/src/soc/amd/phoenix/mca.c @@ -37,38 +37,6 @@ static const char *const mca_bank_name[] = { [29] = "", [30] = "", [31] = "", - [32] = "", - [33] = "", - [34] = "", - [35] = "", - [36] = "", - [37] = "", - [38] = "", - [39] = "", - [40] = "", - [41] = "", - [42] = "", - [43] = "", - [44] = "", - [45] = "", - [46] = "", - [47] = "", - [48] = "", - [49] = "", - [50] = "", - [51] = "", - [52] = "", - [53] = "", - [54] = "", - [55] = "", - [56] = "", - [57] = "", - [58] = "", - [59] = "", - [60] = "", - [61] = "", - [62] = "", - [63] = "", }; bool mca_has_expected_bank_count(void) |