diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-10-01 09:10:06 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-10-01 09:10:06 -0300 |
commit | b0dcc5f61253b384367c43c89b75e560fa751cf4 (patch) | |
tree | 20435b3ba2ec49e5b6e1f76b622348faa05b9d85 /drivers/media/platform | |
parent | 2d7007153f0c9b1dd00c01894df7d26ddc32b79f (diff) |
[media] s5p-jpeg: remove unused var
changeset 6c96dbbc2aa9 added a new function that seems to be
a modified version of an existing function. That's ok, but
it was adding a "word" var from the previous code that it is
not used on the new function. So, remove this left-over.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/platform')
-rw-r--r-- | drivers/media/platform/s5p-jpeg/jpeg-core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/platform/s5p-jpeg/jpeg-core.c b/drivers/media/platform/s5p-jpeg/jpeg-core.c index f026366dc185..2ce9fe2fcb28 100644 --- a/drivers/media/platform/s5p-jpeg/jpeg-core.c +++ b/drivers/media/platform/s5p-jpeg/jpeg-core.c @@ -886,7 +886,6 @@ static void exynos4_jpeg_parse_decode_q_tbl(struct s5p_jpeg_ctx *ctx) struct s5p_jpeg *jpeg = ctx->jpeg; struct vb2_buffer *vb = v4l2_m2m_next_src_buf(ctx->fh.m2m_ctx); struct s5p_jpeg_buffer jpeg_buffer; - unsigned int word; int c, x, components; jpeg_buffer.size = ctx->out_q.sof_len; @@ -894,8 +893,6 @@ static void exynos4_jpeg_parse_decode_q_tbl(struct s5p_jpeg_ctx *ctx) (unsigned long)vb2_plane_vaddr(vb, 0) + ctx->out_q.sof; jpeg_buffer.curr = 0; - word = 0; - skip(&jpeg_buffer, 5); /* P, Y, X */ components = get_byte(&jpeg_buffer); if (components == -1) |