From patchwork Mon Jun 27 17:14:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 585360 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 56FD7C43334 for ; Mon, 27 Jun 2022 17:14:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235930AbiF0ROg (ORCPT ); Mon, 27 Jun 2022 13:14:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36072 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235780AbiF0ROg (ORCPT ); Mon, 27 Jun 2022 13:14:36 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CD6DCC0D for ; Mon, 27 Jun 2022 10:14:34 -0700 (PDT) Received: from perceval.ideasonboard.com (unknown [IPv6:2401:4900:1f3f:ca21:e286:106b:5da4:9482]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 512CE1C90; Mon, 27 Jun 2022 19:14:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1656350072; bh=lxGCesPrx1tJXiDF11Vc/Xjjt4PDmc/IRZXPx+Ok/Ew=; h=From:To:Cc:Subject:Date:From; b=lON1/w/qTtyyaLklCNCa2HGx/sc6uL0Gvyr4sz7H3c2ja6XlYdmYmPV4fcTfLRr/w LYCM4kKaz+XqhIITiBwKa13T3uY/ag+BnjLL9nUscyVPAnXDYgyLQoW1gR4NXRle0H yeXqKojUme9ihGnGBMw6TdyQYjPjSra9dN/sFDWo= From: Umang Jain To: linux-media@vger.kernel.org Cc: Umang Jain Subject: [PATCH] v4l2-ctl: Fix typo in --list-patterns help text Date: Mon, 27 Jun 2022 22:44:18 +0530 Message-Id: <20220627171418.43854-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org s/stream-pattern/stream-out-pattern/ Signed-off-by: Umang Jain Reviewed-by: Kieran Bingham --- utils/v4l2-ctl/v4l2-ctl-streaming.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/v4l2-ctl/v4l2-ctl-streaming.cpp b/utils/v4l2-ctl/v4l2-ctl-streaming.cpp index 7f6482d6..05de44d7 100644 --- a/utils/v4l2-ctl/v4l2-ctl-streaming.cpp +++ b/utils/v4l2-ctl/v4l2-ctl-streaming.cpp @@ -330,7 +330,7 @@ void streaming_usage() " --stream-out-dmabuf\n" " output video using dmabuf [VIDIOC_(D)QBUF]\n" " Requires a corresponding --stream-mmap option.\n" - " --list-patterns list available patterns for use with --stream-pattern.\n" + " --list-patterns list available patterns for use with --stream-out-pattern.\n" " --list-buffers list all video buffers [VIDIOC_QUERYBUF]\n" " --list-buffers-out list all video output buffers [VIDIOC_QUERYBUF]\n" " --list-buffers-vbi list all VBI buffers [VIDIOC_QUERYBUF]\n"