diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-03-25 02:13:50 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-28 16:00:13 +0000 |
commit | 5052e1f45cd1fcffa6f3814bd96a98d52a98b865 (patch) | |
tree | 73dd03cc73edff965aa13cacb85e7c3e7d53934b /src/soc/amd | |
parent | caebcb7014b52780a0f260cd7763d7f81ba0a264 (diff) |
soc/amd/picasso/mca: add missing comma in mca_bank_name array of strings
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Found-by: Coverity CID 1451389
Change-Id: I0af379360fc95e4c6b72d677738c6e7497ed9206
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51788
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/picasso/mca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/mca.c b/src/soc/amd/picasso/mca.c index 8ea5276450..16471b9ea7 100644 --- a/src/soc/amd/picasso/mca.c +++ b/src/soc/amd/picasso/mca.c @@ -137,7 +137,7 @@ static const char *const mca_bank_name[] = { "Load-store unit", "Instruction fetch unit", "L2 cache unit", - "Decode unit" + "Decode unit", "", "Execution unit", "Floating point unit", |