rpmsg: fix dependency on initialization order
authorFederico Fuga <fuga@studiofuga.com>
Mon, 16 Jul 2012 07:36:51 +0000 (10:36 +0300)
committerOhad Ben-Cohen <ohad@wizery.com>
Tue, 17 Jul 2012 10:10:38 +0000 (13:10 +0300)
When rpmsg drivers are built into the kernel, they must not initialize
before the rpmsg bus does, otherwise they'd trigger a BUG() in
drivers/base/driver.c line 169 (driver_register()).

To fix that, and to stop depending on arbitrary linkage ordering of
those built-in rpmsg drivers, we make the rpmsg bus initialize at
subsys_initcall.

Cc: stable <stable@vger.kernel.org>
Signed-off-by: Federico Fuga <fuga@studiofuga.com>
[ohad: rewrite the commit log]
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
drivers/rpmsg/virtio_rpmsg_bus.c

index 39d3aa41adda252c655b2f35f492f62f05c27ab3..f56c8ba3a861cda16870e7456391fe564ec741c6 100644 (file)
@@ -1085,7 +1085,7 @@ static int __init rpmsg_init(void)
 
        return ret;
 }
-module_init(rpmsg_init);
+subsys_initcall(rpmsg_init);
 
 static void __exit rpmsg_fini(void)
 {