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

Commit a6a38615 authored by Qiuxu Zhuo's avatar Qiuxu Zhuo Committed by Borislav Petkov
Browse files

EDAC, skx: Fix function calling order in skx_exit()



The order of function calling in skx_exit() is not the reversed order in
skx_init(). Fix it.

Signed-off-by: default avatarQiuxu Zhuo <qiuxu.zhuo@intel.com>
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
CC: Mauro Carvalho Chehab <mchehab@kernel.org>
CC: Tony Luck <tony.luck@intel.com>
CC: arozansk@redhat.com
CC: linux-edac <linux-edac@vger.kernel.org>
Link: http://lkml.kernel.org/r/1542353616-13421-1-git-send-email-qiuxu.zhuo@intel.com
parent 861e6ed6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1339,11 +1339,11 @@ static void __exit skx_exit(void)
{
	edac_dbg(2, "\n");
	mce_unregister_decode_chain(&skx_mce_dec);
	skx_remove();
	teardown_skx_debug();
	if (nvdimm_count)
		skx_adxl_put();
	kfree(skx_msg);
	teardown_skx_debug();
	skx_remove();
}

module_init(skx_init);