Skip to content

Commit

Permalink
V4L/DVB (6795): Add EXPORT_SYMBOL_GPL to the saa7134 video control ro…
Browse files Browse the repository at this point in the history
…utines

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>
  • Loading branch information
Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 2c10e8a commit f6e90a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/media/video/saa7134/saa7134-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -1278,6 +1279,7 @@ int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c)
mutex_unlock(&dev->lock);
return err;
}
EXPORT_SYMBOL_GPL(saa7134_s_ctrl);

/* ------------------------------------------------------------------ */

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit f6e90a6

Please sign in to comment.