Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 126b67b8 authored by Doug Thompson's avatar Doug Thompson Committed by Borislav Petkov
Browse files

amd64_edac: fix ECC checking



On the good path of BIOS enabled ECC and no override, the value returned
is 1 by omission and thus is deemed failing by the probe-function.

Allow proper module initialization by clearing the retval explicitly.

Signed-off-by: default avatarDoug Thompson <dougthompson@xmission.com>
Signed-off-by: default avatarBorislav Petkov <borislav.petkov@amd.com>
parent ed680c4a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2977,6 +2977,9 @@ static int amd64_check_ecc_enabled(struct amd64_pvt *pvt)
			"ECC is enabled by BIOS, Proceeding "
			"with EDAC module initialization\n");

		/* Signal good ECC status */
		ret = 0;

		/* CLEAR the override, since BIOS controlled it */
		ecc_enable_override = 0;
	}