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: Qiuxu Zhuo <qiuxu.zhuo@intel.com> Signed-off-by: Borislav 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
This commit is contained in:
parent
861e6ed667
commit
a6a386152a
@ -1339,11 +1339,11 @@ static void __exit skx_exit(void)
|
|||||||
{
|
{
|
||||||
edac_dbg(2, "\n");
|
edac_dbg(2, "\n");
|
||||||
mce_unregister_decode_chain(&skx_mce_dec);
|
mce_unregister_decode_chain(&skx_mce_dec);
|
||||||
skx_remove();
|
teardown_skx_debug();
|
||||||
if (nvdimm_count)
|
if (nvdimm_count)
|
||||||
skx_adxl_put();
|
skx_adxl_put();
|
||||||
kfree(skx_msg);
|
kfree(skx_msg);
|
||||||
teardown_skx_debug();
|
skx_remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(skx_init);
|
module_init(skx_init);
|
||||||
|
Loading…
Reference in New Issue
Block a user