soc/amd/stoneyridge/mca: refactor warm boot check in mca_check_all_banks
Change-Id: Id0cf8269d1b695e05c55f33af92978b8244090fa Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56242 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
		| @@ -169,7 +169,9 @@ static void mca_check_all_banks(void) | ||||
| 	struct mca_bank_status mci; | ||||
| 	const unsigned int num_banks = mca_get_bank_count(); | ||||
|  | ||||
| 	if (is_warm_reset()) { | ||||
| 	if (!is_warm_reset()) | ||||
| 		return; | ||||
|  | ||||
| 	for (unsigned int i = 0 ; i < num_banks ; i++) { | ||||
| 		if (i == 3) /* Reserved in Family 15h */ | ||||
| 			continue; | ||||
| @@ -183,7 +185,6 @@ static void mca_check_all_banks(void) | ||||
| 				build_bert_mca_error(&mci); | ||||
| 		} | ||||
| 	} | ||||
| 	} | ||||
| } | ||||
|  | ||||
| static void mca_clear_errors(void) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user