summaryrefslogtreecommitdiffstats
path: root/drivers/edac/edac_module.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab2013-02-15 11:57:50 +0100
committerMauro Carvalho Chehab2013-02-21 15:06:36 +0100
commit4ab19b06acffd2278cd37995927c85a9acfd00db (patch)
tree348d465a0a50f9a04a7e3bf21bc49f371216a61d /drivers/edac/edac_module.c
parentedac: better report error conditions in debug mode (diff)
downloadkernel-qcow2-linux-4ab19b06acffd2278cd37995927c85a9acfd00db.tar.gz
kernel-qcow2-linux-4ab19b06acffd2278cd37995927c85a9acfd00db.tar.xz
kernel-qcow2-linux-4ab19b06acffd2278cd37995927c85a9acfd00db.zip
edac: initialize the core earlier
In order for it to work with it builtin, the EDAC core should be initialized earlier, otherwise the ghes_edac driver initializes before edac_mc_sysfs_init() being called: ... [ 4.998373] EDAC MC0: Giving out device to 'ghes_edac.c' 'ghes_edac': DEV ghes ... [ 4.998373] EDAC MC1: Giving out device to 'ghes_edac.c' 'ghes_edac': DEV ghes [ 6.519495] EDAC MC: Ver: 3.0.0 [ 6.523749] EDAC DEBUG: edac_mc_sysfs_init: device mc created The net result is that no EDAC sysfs nodes will appear. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/edac/edac_module.c')
-rw-r--r--drivers/edac/edac_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/edac_module.c b/drivers/edac/edac_module.c
index 12c951a2c33d..a66941fea5a4 100644
--- a/drivers/edac/edac_module.c
+++ b/drivers/edac/edac_module.c
@@ -146,7 +146,7 @@ static void __exit edac_exit(void)
/*
* Inform the kernel of our entry and exit points
*/
-module_init(edac_init);
+subsys_initcall(edac_init);
module_exit(edac_exit);
MODULE_LICENSE("GPL");