From patchwork Thu Jun 11 01:17:17 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 26866 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 0C445C3300 for ; Thu, 11 Jun 2026 01:17:28 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 02C0561F15; Thu, 11 Jun 2026 03:17:27 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="wEnQrrUo"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 251C86139A for ; Thu, 11 Jun 2026 03:17:25 +0200 (CEST) Received: from killaraus.ideasonboard.com (2001-14ba-70f3-e800--a06.rev.dnainternet.fi [IPv6:2001:14ba:70f3:e800::a06]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 97510D0 for ; Thu, 11 Jun 2026 03:16:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1781140615; bh=0GSTE/n+aB7XD/JdRJjnK+CXwekKu4ChK+RFPDN3qrg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=wEnQrrUoh5jdmjDlQcP3ewQqyt2PSLmhU5jkQ/ezJMQJLMBSQx3AzuFolPnAJUS2W hKG7SQ5yXhgVjsHlZRndpoLaQGogHWO/C07zOCImfY5BJjuUVq/5tcQ7YvXXSPuL4w KlgHOTIvfc64stditJXmAw31xcgTvmqRBD1Zg5tI= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 1/6] ipa: rkisp1: ccm: Drop unused parseYaml() function declaration Date: Thu, 11 Jun 2026 04:17:17 +0300 Message-ID: <20260611011722.1767689-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260611011722.1767689-1-laurent.pinchart@ideasonboard.com> References: <20260611011722.1767689-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 Ccm::parseYaml() function is neither used nor implemented. Drop its declaration. Signed-off-by: Laurent Pinchart --- src/ipa/rkisp1/algorithms/ccm.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ipa/rkisp1/algorithms/ccm.h b/src/ipa/rkisp1/algorithms/ccm.h index 9ac537426d16..3d3a660065ff 100644 --- a/src/ipa/rkisp1/algorithms/ccm.h +++ b/src/ipa/rkisp1/algorithms/ccm.h @@ -41,7 +41,6 @@ public: ControlList &metadata) override; private: - void parseYaml(const ValueNode &tuningData); void setParameters(struct rkisp1_cif_isp_ctk_config &config, const Matrix &matrix, const Matrix &offsets);