From patchwork Tue Jun 11 21:21:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 20270 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 5744CC32CF for ; Tue, 11 Jun 2024 21:21:36 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id AA48365471; Tue, 11 Jun 2024 23:21:35 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="PQIPOcW0"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 1BAA465467 for ; Tue, 11 Jun 2024 23:21:29 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3256CE0C; Tue, 11 Jun 2024 23:21:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1718140876; bh=heBOn4gBq8l+63AarYPy2EP2DyGwnI9oEo02ktO6xKM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PQIPOcW0Q3HVZH17yw813hIVIUElP4omW7k2N4u2564zoQlSxSICZrKkGlEyFC/qT Ttwm9GtM1DXwV9IX44XByXOK0tynfqVFfAlk99E6K+Nh3ede8jtbNfFRXASPiu4rFQ 8Th2TH0vTHaWZsnUqWnE/2qHJGIsXPBmv6S78Pfc= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH 6/6] libcamera: controls: Add missing period at end of Gamma description Date: Wed, 12 Jun 2024 00:21:01 +0300 Message-ID: <20240611212101.14313-7-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.44.2 In-Reply-To: <20240611212101.14313-1-laurent.pinchart@ideasonboard.com> References: <20240611212101.14313-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The last sentence of the Gamma control description misses the final period. Add it. Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug --- src/libcamera/control_ids_core.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/control_ids_core.yaml b/src/libcamera/control_ids_core.yaml index be19135616cf..9d413a94e0ee 100644 --- a/src/libcamera/control_ids_core.yaml +++ b/src/libcamera/control_ids_core.yaml @@ -870,6 +870,6 @@ controls: description: | Specify a fixed gamma value. Default must be 2.2 which closely mimics sRGB gamma. Note that this is camera gamma, so it is applied as - 1.0/gamma + 1.0/gamma. ...