From patchwork Tue Jun 11 21:20:58 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 20267 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 414ACC3237 for ; Tue, 11 Jun 2024 21:21:31 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E17DB65456; Tue, 11 Jun 2024 23:21:30 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="rb4l5aSP"; 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 1B30365456 for ; Tue, 11 Jun 2024 23:21:25 +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 1CF60A9A; Tue, 11 Jun 2024 23:21:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1718140872; bh=ultZUxj9VZ+Dnzp2O8WFl4GDApRm70NtBBQDZX1E4hg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rb4l5aSP4Tt7tN78r3ajGDRfxiDnOaBNClDjaBY4pe/QaKFc0l0ndKp0F6aBirqbf TfJ/jZDR6H/U/6PCrs8/XIEFfnkTJcTl5H1IECVFCGJQ4yPJCpapGWNR4oLxbXBZVh iu19AqhIF0k9OVVT3CeuK5qKhTIh/QeAF+dG8Esk= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH 3/6] ipa: rkisp1: goc: Use copydoc Date: Wed, 12 Jun 2024 00:20:58 +0300 Message-ID: <20240611212101.14313-4-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" Use the Doygen \copydoc command instead of duplicating documentation. Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug --- src/ipa/rkisp1/algorithms/goc.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/ipa/rkisp1/algorithms/goc.cpp b/src/ipa/rkisp1/algorithms/goc.cpp index 01331b653c27..65460eb45135 100644 --- a/src/ipa/rkisp1/algorithms/goc.cpp +++ b/src/ipa/rkisp1/algorithms/goc.cpp @@ -64,11 +64,7 @@ int GammaOutCorrection::init(IPAContext &context, const YamlObject &tuningData) } /** - * \brief Configure the Gamma given a configInfo - * \param[in] context The shared IPA context - * \param[in] configInfo The IPA configuration data - * - * \return 0 + * \copydoc libcamera::ipa::Algorithm::configure */ int GammaOutCorrection::configure(IPAContext &context, [[maybe_unused]] const IPACameraSensorInfo &configInfo)