aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/edac/edac_module.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/edac/edac_module.c')
-rw-r--r--drivers/edac/edac_module.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/edac/edac_module.c b/drivers/edac/edac_module.c
index 3454798c270e..58a28d838f37 100644
--- a/drivers/edac/edac_module.c
+++ b/drivers/edac/edac_module.c
@@ -94,6 +94,8 @@ static int __init edac_init(void)
94 if (err) 94 if (err)
95 goto error; 95 goto error;
96 96
97 edac_debugfs_init();
98
97 /* Setup/Initialize the workq for this core */ 99 /* Setup/Initialize the workq for this core */
98 err = edac_workqueue_setup(); 100 err = edac_workqueue_setup();
99 if (err) { 101 if (err) {
@@ -118,6 +120,7 @@ static void __exit edac_exit(void)
118 /* tear down the various subsystems */ 120 /* tear down the various subsystems */
119 edac_workqueue_teardown(); 121 edac_workqueue_teardown();
120 edac_mc_sysfs_exit(); 122 edac_mc_sysfs_exit();
123 edac_debugfs_exit();
121} 124}
122 125
123/* 126/*