[media] media: Initialize the media core with subsys_initcall()
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 12 Mar 2012 13:02:47 +0000 (10:02 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 19 Mar 2012 22:02:22 +0000 (19:02 -0300)
commitff732d281b29ad7898c1193843ebe6a37d426e36
tree25424dfa90201d53c742dbf56124d657c1f6e282
parentee981c6fac6724c3730102c0905af1bc1c99f722
[media] media: Initialize the media core with subsys_initcall()

Media-related drivers living outside drivers/media/ (such as the UVC
gadget driver in drivers/usb/gadget/) rely on the media core being
initialized before they're probed. As drivers/usb/ is linked before
drivers/media/, this is currently not the case and will lead to crashes
if the drivers are not compiled as modules.

Register media_devnode_init() as a subsys_initcall() instead of
module_init() to fix this.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Bhupesh Sharma <bhupesh.sharma@st.com>
Acked-by: Sakari Ailus <sakari.ailus@iki.fi>
Tested-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/media-devnode.c