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

Commit 344f0a06 authored by Borislav Petkov's avatar Borislav Petkov Committed by Borislav Petkov
Browse files

MCE, AMD: Correct some MC0 error types



Use "System Read Data Error" as a more general name for MC0 bus errors
on F15h and update some error definitions.

Signed-off-by: default avatarBorislav Petkov <borislav.petkov@amd.com>
Reviewed-by: default avatarAndreas Herrmann <andreas.herrmann3@amd.com>
parent 36c46f31
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -255,10 +255,9 @@ static bool f15h_dc_mce(u16 ec, u8 xec)
	} else if (BUS_ERROR(ec)) {

		if (!xec)
			pr_cont("during system linefill.\n");
			pr_cont("System Read Data Error.\n");
		else
			pr_cont(" Internal %s condition.\n",
				((xec == 1) ? "livelock" : "deadlock"));
			pr_cont(" Internal error condition type %d.\n", xec);
	} else
		ret = false;