This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: v4l2-compliance: skip V4L2_CID_PRIVATE_BASE check for UVC Author: Hans Verkuil <[email protected]> Date: Wed Oct 29 11:15:51 2025 +0100 UVC doesn't support V4L2_CID_PRIVATE_BASE, so skip the check. Signed-off-by: Hans Verkuil <[email protected]> Reviewed-by: Ricardo Ribalda <[email protected]> Tested-by: Ricardo Ribalda <[email protected]> utils/v4l2-compliance/v4l2-test-controls.cpp | 3 +++ 1 file changed, 3 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=af4a91dea9a25f05af5a1b8a26064d7072ae7a79 diff --git a/utils/v4l2-compliance/v4l2-test-controls.cpp b/utils/v4l2-compliance/v4l2-test-controls.cpp index e4925ca3977b..73a6a3be0f94 100644 --- a/utils/v4l2-compliance/v4l2-test-controls.cpp +++ b/utils/v4l2-compliance/v4l2-test-controls.cpp @@ -321,6 +321,9 @@ int testQueryExtControls(struct node *node) if (user_controls != user_controls_check) return fail("expected %d user controls, got %d\n", user_controls_check, user_controls); + /* UVC doesn't support V4L2_CID_PRIVATE_BASE */ + if (is_uvcvideo) + priv_user_controls_check = 0; if (priv_user_controls != priv_user_controls_check) return fail("expected %d private controls, got %d\n", priv_user_controls_check, priv_user_controls); _______________________________________________ linuxtv-commits mailing list -- [email protected] To unsubscribe send an email to [email protected]
