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

Commit 6ba92fea authored by Borislav Petkov's avatar Borislav Petkov
Browse files

EDAC, amd64_edac: Init opstate at the proper time during init



It is useless to do it if we're loaded on unsupported hardware so do
that only after we have detected at least 1 supported AMD northbridge.

Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
parent ab564cb5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2966,11 +2966,11 @@ static int __init amd64_edac_init(void)
	int err = -ENODEV;
	int i;

	opstate_init();

	if (amd_cache_northbridges() < 0)
		goto err_ret;

	opstate_init();

	err = -ENOMEM;
	ecc_stngs = kzalloc(amd_nb_num() * sizeof(ecc_stngs[0]), GFP_KERNEL);
	if (!ecc_stngs)