]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
V4L/DVB: V4L2: soc-camera: export soc-camera bus type for notifications
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Mon, 26 Jul 2010 14:37:13 +0000 (11:37 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 2 Aug 2010 19:43:38 +0000 (16:43 -0300)
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/soc_camera.c
include/media/soc_camera.h

index 475757bfd7ba5bbd0cff11ecf8ab4f963d5174f9..f2032939fd4b728d0d7465d03da5ec587087c52f 100644 (file)
@@ -1107,13 +1107,14 @@ static int soc_camera_resume(struct device *dev)
        return ret;
 }
 
-static struct bus_type soc_camera_bus_type = {
+struct bus_type soc_camera_bus_type = {
        .name           = "soc-camera",
        .probe          = soc_camera_probe,
        .remove         = soc_camera_remove,
        .suspend        = soc_camera_suspend,
        .resume         = soc_camera_resume,
 };
+EXPORT_SYMBOL_GPL(soc_camera_bus_type);
 
 static struct device_driver ic_drv = {
        .name   = "camera",
index b8289c2f609b431cf6da04388bdfd679a2db65c8..2ce957301f770b36af1c5b13ddd7c4b363354086 100644 (file)
 #ifndef SOC_CAMERA_H
 #define SOC_CAMERA_H
 
+#include <linux/device.h>
 #include <linux/mutex.h>
 #include <linux/pm.h>
 #include <linux/videodev2.h>
 #include <media/videobuf-core.h>
 #include <media/v4l2-device.h>
 
+extern struct bus_type soc_camera_bus_type;
+
 struct soc_camera_device {
        struct list_head list;
        struct device dev;