diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-11 13:01:57 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:03:31 -0500 |
commit | f6e90a66cde270cd6cc7aa1f4f0650930aa7f6bc (patch) | |
tree | d594e35ea357d693d70bc01857b7140ed5066eaa /drivers/media/video/saa7134 | |
parent | 2c10e8a8985e41addbbbe54b403418c27462f854 (diff) |
V4L/DVB (6795): Add EXPORT_SYMBOL_GPL to the saa7134 video control routines
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>
Diffstat (limited to 'drivers/media/video/saa7134')
-rw-r--r-- | drivers/media/video/saa7134/saa7134-video.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/video/saa7134/saa7134-video.c b/drivers/media/video/saa7134/saa7134-video.c index 9705f1f39509..1184d359e848 100644 --- a/drivers/media/video/saa7134/saa7134-video.c +++ b/drivers/media/video/saa7134/saa7134-video.c | |||
@@ -1165,6 +1165,7 @@ int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c) | |||
1165 | } | 1165 | } |
1166 | return 0; | 1166 | return 0; |
1167 | } | 1167 | } |
1168 | EXPORT_SYMBOL_GPL(saa7134_g_ctrl); | ||
1168 | 1169 | ||
1169 | int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c) | 1170 | int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c) |
1170 | { | 1171 | { |
@@ -1278,6 +1279,7 @@ error: | |||
1278 | mutex_unlock(&dev->lock); | 1279 | mutex_unlock(&dev->lock); |
1279 | return err; | 1280 | return err; |
1280 | } | 1281 | } |
1282 | EXPORT_SYMBOL_GPL(saa7134_s_ctrl); | ||
1281 | 1283 | ||
1282 | /* ------------------------------------------------------------------ */ | 1284 | /* ------------------------------------------------------------------ */ |
1283 | 1285 | ||
@@ -1685,6 +1687,7 @@ int saa7134_queryctrl(struct file *file, void *priv, struct v4l2_queryctrl *c) | |||
1685 | *c = (NULL != ctrl) ? *ctrl : no_ctrl; | 1687 | *c = (NULL != ctrl) ? *ctrl : no_ctrl; |
1686 | return 0; | 1688 | return 0; |
1687 | } | 1689 | } |
1690 | EXPORT_SYMBOL_GPL(saa7134_queryctrl); | ||
1688 | 1691 | ||
1689 | static int saa7134_enum_input(struct file *file, void *priv, | 1692 | static int saa7134_enum_input(struct file *file, void *priv, |
1690 | struct v4l2_input *i) | 1693 | struct v4l2_input *i) |