diff --git a/src/soc/amd/cezanne/mca.c b/src/soc/amd/cezanne/mca.c index 24a77887df..a8d97029f1 100644 --- a/src/soc/amd/cezanne/mca.c +++ b/src/soc/amd/cezanne/mca.c @@ -3,11 +3,15 @@ #include #include +static void mca_check_all_banks(void) +{ + /* TODO: Implement MCAX register checking and BERT table generation. */ +} + /* Check the Machine Check Architecture Extension registers */ void check_mca(void) { - /* TODO: Implement MCAX register checking and BERT table generation. */ - + mca_check_all_banks(); /* mca_clear_status uses the MCA registers and not the MCAX ones. Since they are aliases, we can use either set of registers. */ mca_clear_status();