]> Pileus Git - ~andy/linux/commitdiff
V4L/DVB (6795): Add EXPORT_SYMBOL_GPL to the saa7134 video control routines
authorMauro Carvalho Chehab <mchehab@infradead.org>
Tue, 11 Dec 2007 18:01:57 +0000 (15:01 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 25 Jan 2008 21:03:31 +0000 (19:03 -0200)
Those newer functions are used by saa7134-empress. Adds export for them:
+EXPORT_SYMBOL_GPL(saa7134_g_ctrl);
+EXPORT_SYMBOL_GPL(saa7134_s_ctrl);
+EXPORT_SYMBOL_GPL(saa7134_queryctrl);

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/saa7134/saa7134-video.c

index 9705f1f395093cf3cdc2efb6336ffcdffcaeebf1..1184d359e848be291d62ac6786f0526845f15d1c 100644 (file)
@@ -1165,6 +1165,7 @@ int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c)
        }
        return 0;
 }
+EXPORT_SYMBOL_GPL(saa7134_g_ctrl);
 
 int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c)
 {
@@ -1278,6 +1279,7 @@ error:
        mutex_unlock(&dev->lock);
        return err;
 }
+EXPORT_SYMBOL_GPL(saa7134_s_ctrl);
 
 /* ------------------------------------------------------------------ */
 
@@ -1685,6 +1687,7 @@ int saa7134_queryctrl(struct file *file, void *priv, struct v4l2_queryctrl *c)
        *c = (NULL != ctrl) ? *ctrl : no_ctrl;
        return 0;
 }
+EXPORT_SYMBOL_GPL(saa7134_queryctrl);
 
 static int saa7134_enum_input(struct file *file, void *priv,
                                        struct v4l2_input *i)