From patchwork Fri Sep 9 13:21:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrey Utkin X-Patchwork-Id: 9323439 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 6C1676077F for ; Fri, 9 Sep 2016 13:21:16 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5E51E29EAE for ; Fri, 9 Sep 2016 13:21:16 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 531B729EB0; Fri, 9 Sep 2016 13:21:16 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C730729EAE for ; Fri, 9 Sep 2016 13:21:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755035AbcIINVN (ORCPT ); Fri, 9 Sep 2016 09:21:13 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:53505 "EHLO out4-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755021AbcIINVN (ORCPT ); Fri, 9 Sep 2016 09:21:13 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 36EEF20779; Fri, 9 Sep 2016 09:21:12 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute3.internal (MEProxy); Fri, 09 Sep 2016 09:21:12 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-sasl-enc:x-sasl-enc; s=smtpout; bh=A5NIOTGUS+FmxfFnl21xHRUNA7 s=; b=lNSoVCRXt4F892mA67r9BFIdgzF8vuuu97f1WsqVRaP2xZQjk4jJZA//mB nBF5D448c8ueHwkx4zDUA70CD+2/BzvDQkgYDOvEV4Os6Uz8z/yRPJfMg5yOs6VM qz3y1/a5bp2GHR6ApqR/RmE3GmClIZaMky5EG4kYwkev7FBJs= X-Sasl-enc: MLHqC53jIz8QhQqWB3bOfA7BEWiBoWANHSJzmGql5V5X 1473427271 Received: from localhost.localdomain (unknown [91.198.4.228]) by mail.messagingengine.com (Postfix) with ESMTPA id 521B0F29CD; Fri, 9 Sep 2016 09:21:11 -0400 (EDT) From: Andrey Utkin To: hans.verkuil@cisco.com, mchehab@osg.samsung.com Cc: linux-media@vger.kernel.org, Andrey Utkin Subject: [PATCH] v4l2-ctl: Fix unneeded dot in "no hsync lock" Date: Fri, 9 Sep 2016 16:21:04 +0300 Message-Id: <20160909132104.31476-1-andrey.utkin@corp.bluecherry.net> X-Mailer: git-send-email 2.9.2 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Andrey Utkin Signed-off-by: Andrey Utkin --- utils/v4l2-ctl/v4l2-ctl-io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/v4l2-ctl/v4l2-ctl-io.cpp b/utils/v4l2-ctl/v4l2-ctl-io.cpp index e778569..30798ea 100644 --- a/utils/v4l2-ctl/v4l2-ctl-io.cpp +++ b/utils/v4l2-ctl/v4l2-ctl-io.cpp @@ -53,7 +53,7 @@ static const flag_def in_status_def[] = { { V4L2_IN_ST_NO_COLOR, "no color" }, { V4L2_IN_ST_HFLIP, "hflip" }, { V4L2_IN_ST_VFLIP, "vflip" }, - { V4L2_IN_ST_NO_H_LOCK, "no hsync lock." }, + { V4L2_IN_ST_NO_H_LOCK, "no hsync lock" }, { V4L2_IN_ST_COLOR_KILL, "color kill" }, { V4L2_IN_ST_NO_SYNC, "no sync lock" }, { V4L2_IN_ST_NO_EQU, "no equalizer lock" },