1
0
Fork 0

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
hifive-unleashed-5.1
Qiuxu Zhuo 2018-11-16 15:33:36 +08:00 committed by Borislav Petkov
parent 861e6ed667
commit a6a386152a
1 changed files with 2 additions and 2 deletions

View File

@ -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);