summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/mca.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-07-12 22:21:36 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-07-14 02:20:22 +0000
commitc0a6a0efc4be6c09c2181528d34af1deeda81817 (patch)
tree4dfcf6b205db1ae300d2ff93c43d80343991241c /src/soc/amd/picasso/mca.c
parentceb2fbb9203c66478f1566d7fcfebc5d807bdb32 (diff)
downloadcoreboot-c0a6a0efc4be6c09c2181528d34af1deeda81817.tar.gz
coreboot-c0a6a0efc4be6c09c2181528d34af1deeda81817.tar.bz2
coreboot-c0a6a0efc4be6c09c2181528d34af1deeda81817.zip
soc/amd/picasso,stoneyridge/mca: mark num_banks as constant
Change-Id: I23aa4d36d4e6d4c7ed66800c2e7963c4ed03c393 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56236 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso/mca.c')
-rw-r--r--src/soc/amd/picasso/mca.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/soc/amd/picasso/mca.c b/src/soc/amd/picasso/mca.c
index 65b19161123d..3c5dd10c2cfd 100644
--- a/src/soc/amd/picasso/mca.c
+++ b/src/soc/amd/picasso/mca.c
@@ -154,9 +154,7 @@ void check_mca(void)
{
int i;
struct mca_bank mci;
- unsigned int num_banks;
-
- num_banks = mca_get_bank_count();
+ const unsigned int num_banks = mca_get_bank_count();
for (i = 0 ; i < num_banks ; i++) {
mci.sts = rdmsr(MCAX_STATUS_MSR(i));