media: rkisp1: fix missing mbus.type -> mbus_type conversion
There was one missing sensor->mbus.type to sensor->mbus_type conversion which broke the build. I suspect this was due to a merge conflict that was incorrectly resolved. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
33fc918ab8
commit
19ce44f027
|
@ -291,7 +291,7 @@ static int rkisp1_config_isp(struct rkisp1_device *rkisp1)
|
|||
if (sink_fmt->pixel_enc == V4L2_PIXEL_ENC_BAYER) {
|
||||
acq_mult = 1;
|
||||
if (src_fmt->pixel_enc == V4L2_PIXEL_ENC_BAYER) {
|
||||
if (sensor->mbus.type == V4L2_MBUS_BT656)
|
||||
if (sensor->mbus_type == V4L2_MBUS_BT656)
|
||||
isp_ctrl = RKISP1_CIF_ISP_CTRL_ISP_MODE_RAW_PICT_ITU656;
|
||||
else
|
||||
isp_ctrl = RKISP1_CIF_ISP_CTRL_ISP_MODE_RAW_PICT;
|
||||
|
|
Loading…
Reference in New Issue