media: atomisp: Only set default_run_mode on first open of a stream/asd
[ Upstream commitpull/1175/head60ec70a71a] Calling v4l2_ctrl_s_ctrl(asd->run_mode, pipe->default_run_mode) when the stream is already active (through another /dev/video# node) causes the stream to stop. Move the call to set the default run-mode so that it is only done on the first open of one of the 4 /dev/video# nodes of one of the 2 streams (atomisp-sub-devices / asd-s). Fixes:2c45e343c5("media: atomisp: set per-device's default mode") Reviewed-by: Andy Shevchenko <andy@kernel.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
parent
029c1410e3
commit
5259b92dc4
|
|
@ -741,13 +741,13 @@ init_subdev:
|
|||
goto done;
|
||||
|
||||
atomisp_subdev_init_struct(asd);
|
||||
/* Ensure that a mode is set */
|
||||
v4l2_ctrl_s_ctrl(asd->run_mode, pipe->default_run_mode);
|
||||
|
||||
done:
|
||||
pipe->users++;
|
||||
mutex_unlock(&isp->mutex);
|
||||
|
||||
/* Ensure that a mode is set */
|
||||
v4l2_ctrl_s_ctrl(asd->run_mode, pipe->default_run_mode);
|
||||
|
||||
return 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue