mirror of https://gitee.com/openkylin/linux.git
media: s5p-jpeg: drop unused components from s5p_jpeg_q_data
The number of components are only set, and never used. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Reviewed-by: Jacek Anaszewski <jacek.anaszewski@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
d619a95693
commit
cb639a6f4a
|
@ -1236,7 +1236,6 @@ static bool s5p_jpeg_parse_hdr(struct s5p_jpeg_q_data *result,
|
|||
}
|
||||
result->sof = sof;
|
||||
result->sof_len = sof_len;
|
||||
result->components = components;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -190,7 +190,6 @@ struct s5p_jpeg_marker {
|
|||
* @dqt: DQT markers' positions 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)
|
||||
* @components: number of image components
|
||||
* @size: image buffer size in bytes
|
||||
*/
|
||||
struct s5p_jpeg_q_data {
|
||||
|
@ -202,7 +201,6 @@ struct s5p_jpeg_q_data {
|
|||
struct s5p_jpeg_marker dqt;
|
||||
u32 sof;
|
||||
u32 sof_len;
|
||||
u32 components;
|
||||
u32 size;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue