mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
[media] exynos-gsc: Add missing static storage class specifiers
Fixes the following warnings: drivers/media/platform/exynos-gsc/gsc-core.c:313:5: warning: symbol 'get_plane_info' was not declared. Should it be static? drivers/media/platform/exynos-gsc/gsc-core.c:746:28: warning: symbol 'gsc_ctrl_ops' was not declared. Should it be static? drivers/media/platform/exynos-gsc/gsc-m2m.c:102:5: warning: symbol 'gsc_fill_addr' was not declared. Should it be static? drivers/media/platform/exynos-gsc/gsc-m2m.c:252:16: warning: symbol 'gsc_m2m_qops' was not declared. Should it be static? Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
9b2e0e70ac
commit
d2331c9913
@ -310,7 +310,7 @@ int gsc_enum_fmt_mplane(struct v4l2_fmtdesc *f)
|
||||
return 0;
|
||||
}
|
||||
|
||||
u32 get_plane_info(struct gsc_frame *frm, u32 addr, u32 *index)
|
||||
static u32 get_plane_info(struct gsc_frame *frm, u32 addr, u32 *index)
|
||||
{
|
||||
if (frm->addr.y == addr) {
|
||||
*index = 0;
|
||||
@ -743,7 +743,7 @@ static int gsc_s_ctrl(struct v4l2_ctrl *ctrl)
|
||||
return ret;
|
||||
}
|
||||
|
||||
const struct v4l2_ctrl_ops gsc_ctrl_ops = {
|
||||
static const struct v4l2_ctrl_ops gsc_ctrl_ops = {
|
||||
.s_ctrl = gsc_s_ctrl,
|
||||
};
|
||||
|
||||
|
@ -99,7 +99,7 @@ static void gsc_m2m_job_abort(void *priv)
|
||||
gsc_m2m_job_finish(ctx, VB2_BUF_STATE_ERROR);
|
||||
}
|
||||
|
||||
int gsc_fill_addr(struct gsc_ctx *ctx)
|
||||
static int gsc_fill_addr(struct gsc_ctx *ctx)
|
||||
{
|
||||
struct gsc_frame *s_frame, *d_frame;
|
||||
struct vb2_buffer *vb = NULL;
|
||||
@ -249,7 +249,7 @@ static void gsc_m2m_buf_queue(struct vb2_buffer *vb)
|
||||
v4l2_m2m_buf_queue(ctx->m2m_ctx, vb);
|
||||
}
|
||||
|
||||
struct vb2_ops gsc_m2m_qops = {
|
||||
static struct vb2_ops gsc_m2m_qops = {
|
||||
.queue_setup = gsc_m2m_queue_setup,
|
||||
.buf_prepare = gsc_m2m_buf_prepare,
|
||||
.buf_queue = gsc_m2m_buf_queue,
|
||||
|
Loading…
Reference in New Issue
Block a user