mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 23:14:31 +08:00
media: fimc-is: constify pointers to v4l2_pix_format_mplane
In few places functions do not modify pointed "struct v4l2_pix_format_mplane", thus the pointer can point to const data for additional safety and self-documenting intention of the function. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
17b8d951b5
commit
f157398a2a
@ -1010,7 +1010,7 @@ static int __fimc_capture_set_format(struct fimc_dev *fimc,
|
||||
{
|
||||
struct fimc_vid_cap *vc = &fimc->vid_cap;
|
||||
struct fimc_ctx *ctx = vc->ctx;
|
||||
struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
|
||||
const struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
|
||||
struct fimc_frame *ff = &ctx->d_frame;
|
||||
const struct fimc_fmt *inp_fmt = NULL;
|
||||
int ret, i;
|
||||
|
@ -40,7 +40,7 @@ static int isp_video_capture_queue_setup(struct vb2_queue *vq,
|
||||
unsigned int sizes[], struct device *alloc_devs[])
|
||||
{
|
||||
struct fimc_isp *isp = vb2_get_drv_priv(vq);
|
||||
struct v4l2_pix_format_mplane *vid_fmt = &isp->video_capture.pixfmt;
|
||||
const struct v4l2_pix_format_mplane *vid_fmt = &isp->video_capture.pixfmt;
|
||||
const struct fimc_fmt *fmt = isp->video_capture.format;
|
||||
unsigned int wh, i;
|
||||
|
||||
|
@ -316,7 +316,7 @@ static int fimc_m2m_try_fmt_mplane(struct file *file, void *fh,
|
||||
|
||||
static void __set_frame_format(struct fimc_frame *frame,
|
||||
const struct fimc_fmt *fmt,
|
||||
struct v4l2_pix_format_mplane *pixm)
|
||||
const struct v4l2_pix_format_mplane *pixm)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user