On Fri, Nov 29, 2024 at 07:18:55PM +0100, Ricardo Ribalda wrote: > On Fri, 29 Nov 2024 at 16:18, Xiong Nandi <xndchn@xxxxxxxxx> wrote: > > > > uvc_query_name was introduced to print query name in uvc_query_ctrl. > > So we can also use it in uvc_get_video_ctrl. > > > > Signed-off-by: Xiong Nandi <xndchn@xxxxxxxxx> > > --- > > drivers/media/usb/uvc/uvc_video.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/media/usb/uvc/uvc_video.c b/drivers/media/usb/uvc/uvc_video.c > > index e00f38dd07d9..93cacd2c8721 100644 > > --- a/drivers/media/usb/uvc/uvc_video.c > > +++ b/drivers/media/usb/uvc/uvc_video.c > > @@ -297,8 +297,8 @@ static int uvc_get_video_ctrl(struct uvc_streaming *stream, > > goto out; > > } else if (ret != size) { > > dev_err(&stream->intf->dev, > > - "Failed to query (%u) UVC %s control : %d (exp. %u).\n", > > - query, probe ? "probe" : "commit", ret, size); > > + "Failed to query (%s) UVC %s control : %d (exp. %u).\n", > > + uvc_query_name(query), probe ? "probe" : "commit", ret, size); > > nit: This is above 80 characters. Please move size to the next line, > aligned to uvc_query_name I can make that change when applying the patch, no need to send a new version. Reviewed-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> > With that change: > > Reviewed-by: Ricardo Ribalda <ribalda@xxxxxxxxxxxx> > > > ret = (ret == -EPROTO) ? -EPROTO : -EIO; > > goto out; > > } -- Regards, Laurent Pinchart