Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2331c99 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mauro Carvalho Chehab
Browse files

[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: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 9b2e0e70
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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,
};

+2 −2
Original line number Diff line number Diff line
@@ -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,