Commit cb639a6f authored by Philipp Zabel's avatar Philipp Zabel Committed by Mauro Carvalho Chehab

media: s5p-jpeg: drop unused components from s5p_jpeg_q_data

The number of components are only set, and never used.
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: default avatarJacek Anaszewski <jacek.anaszewski@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent d619a956
...@@ -1236,7 +1236,6 @@ static bool s5p_jpeg_parse_hdr(struct s5p_jpeg_q_data *result, ...@@ -1236,7 +1236,6 @@ static bool s5p_jpeg_parse_hdr(struct s5p_jpeg_q_data *result,
} }
result->sof = sof; result->sof = sof;
result->sof_len = sof_len; result->sof_len = sof_len;
result->components = components;
return true; return true;
} }
......
...@@ -190,7 +190,6 @@ struct s5p_jpeg_marker { ...@@ -190,7 +190,6 @@ struct s5p_jpeg_marker {
* @dqt: DQT markers' positions relative to the buffer beginning * @dqt: DQT markers' positions relative to the buffer beginning
* @sof: SOF0 marker's position relative to the buffer beginning * @sof: SOF0 marker's position relative to the buffer beginning
* @sof_len: SOF0 marker's payload length (without length field itself) * @sof_len: SOF0 marker's payload length (without length field itself)
* @components: number of image components
* @size: image buffer size in bytes * @size: image buffer size in bytes
*/ */
struct s5p_jpeg_q_data { struct s5p_jpeg_q_data {
...@@ -202,7 +201,6 @@ struct s5p_jpeg_q_data { ...@@ -202,7 +201,6 @@ struct s5p_jpeg_q_data {
struct s5p_jpeg_marker dqt; struct s5p_jpeg_marker dqt;
u32 sof; u32 sof;
u32 sof_len; u32 sof_len;
u32 components;
u32 size; u32 size;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment