[libcamera-devel] [PATCH] libcamera: v4l2_device: Fix error messages in setControls()
Kieran Bingham
kieran.bingham at ideasonboard.com
Thu Aug 29 11:48:07 CEST 2019
Hi Niklas,
On 29/08/2019 09:09, Niklas Söderlund wrote:
> The error messages looks copied from getControls() without being updated
> for the set controls case, fix this.
Indeed, I'd even say they /are/ copied :-D
>
> Signed-off-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>
Thanks for the fix.
Perhaps a:
Fixes: eb068f4e67ee ("libcamera: v4l2_device: Implement get and set
controls")
but that's not essential.
Reviewed-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
> ---
> src/libcamera/v4l2_device.cpp | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp
> index f89546610ac69ba0..349bf2d2970418e4 100644
> --- a/src/libcamera/v4l2_device.cpp
> +++ b/src/libcamera/v4l2_device.cpp
> @@ -287,13 +287,13 @@ int V4L2Device::setControls(V4L2ControlList *ctrls)
>
> /* Generic validation error. */
> if (errorIdx == 0 || errorIdx >= count) {
> - LOG(V4L2, Error) << "Unable to read controls: "
> + LOG(V4L2, Error) << "Unable to set controls: "
> << strerror(ret);
> return -EINVAL;
> }
>
> /* A specific control failed. */
> - LOG(V4L2, Error) << "Unable to read control " << errorIdx
> + LOG(V4L2, Error) << "Unable to set control " << errorIdx
> << ": " << strerror(ret);
> count = errorIdx - 1;
> ret = errorIdx;
>
--
Regards
--
Kieran
More information about the libcamera-devel
mailing list