aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2016-12-08 20:22:43 -0200
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-12-12 07:49:58 -0200
commitd183e4efcae8d88a2f252e546978658ca6d273cc (patch)
treef89f873dd12db6fc3fa0af506c048e0288b0fa61 /drivers/media
parent[media] v4l: tvp5150: Don't inline the tvp5150_selmux() function (diff)
downloadlinux-dev-d183e4efcae8d88a2f252e546978658ca6d273cc.tar.xz
linux-dev-d183e4efcae8d88a2f252e546978658ca6d273cc.zip
[media] v4l: tvp5150: Add missing break in set control handler
A break is missing resulting in the hue control enabling or disabling the decode completely. Fix it. Fixes: c43875f66140 ("[media] tvp5150: replace MEDIA_ENT_F_CONN_TEST by a control") Cc: stable@vger.kernel.org Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/i2c/tvp5150.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c
index febe6833a504..3a0fe8cc64e9 100644
--- a/drivers/media/i2c/tvp5150.c
+++ b/drivers/media/i2c/tvp5150.c
@@ -818,6 +818,7 @@ static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
return 0;
case V4L2_CID_HUE:
tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
+ break;
case V4L2_CID_TEST_PATTERN:
decoder->enable = ctrl->val ? false : true;
tvp5150_selmux(sd);