From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932941AbbDURoa (ORCPT ); Tue, 21 Apr 2015 13:44:30 -0400 Received: from galahad.ideasonboard.com ([185.26.127.97]:55089 "EHLO galahad.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751968AbbDURo0 (ORCPT ); Tue, 21 Apr 2015 13:44:26 -0400 From: Laurent Pinchart To: Ricardo Ribalda Delgado Cc: Hans Verkuil , Mauro Carvalho Chehab , Arun Kumar K , Sylwester Nawrocki , Antti Palosaari , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Sakari Ailus Subject: Re: [PATCH v2 1/5] media/v4l2-ctrls: volatiles should not generate CH_VALUE Date: Tue, 21 Apr 2015 20:44:34 +0300 Message-ID: <1532862.VB4B3JqLyH@avalon> User-Agent: KMail/4.14.3 (Linux/3.18.11-gentoo; KDE/4.14.3; x86_64; ; ) In-Reply-To: <1426858247-25746-1-git-send-email-ricardo.ribalda@gmail.com> References: <1426858247-25746-1-git-send-email-ricardo.ribalda@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Ricardo, Thank you for the patch, and sorry for the late review (so late that the patch has already been merged). On Friday 20 March 2015 14:30:46 Ricardo Ribalda Delgado wrote: > Volatile controls should not generate CH_VALUE events. What's the rationale for that ? I would actually expect the value change events to be more useful for volatile controls than non-volatile controls. Volatile controls can have their value changed by the hardware without software intervention, and it makes sense to me to report that to userspace. > Set has_changed to false to prevent this happening. > > Signed-off-by: Ricardo Ribalda Delgado > --- > v2: By Sakari Ailus > > Fix CodeStyle (sorry :S) > drivers/media/v4l2-core/v4l2-ctrls.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/drivers/media/v4l2-core/v4l2-ctrls.c > b/drivers/media/v4l2-core/v4l2-ctrls.c index 45c5b47..2ebc33e 100644 > --- a/drivers/media/v4l2-core/v4l2-ctrls.c > +++ b/drivers/media/v4l2-core/v4l2-ctrls.c > @@ -1609,6 +1609,15 @@ static int cluster_changed(struct v4l2_ctrl *master) > > if (ctrl == NULL) > continue; > + /* > + * Set has_changed to false to avoid generating > + * the event V4L2_EVENT_CTRL_CH_VALUE > + */ > + if (ctrl->flags & V4L2_CTRL_FLAG_VOLATILE) { > + ctrl->has_changed = false; > + continue; > + } > + > for (idx = 0; !ctrl_changed && idx < ctrl->elems; idx++) > ctrl_changed = !ctrl->type_ops->equal(ctrl, idx, > ctrl->p_cur, ctrl->p_new); -- Regards, Laurent Pinchart