From patchwork Thu Jun 11 01:17:21 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 26870 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 18412C3300 for ; Thu, 11 Jun 2026 01:17:34 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 7C07261F40; Thu, 11 Jun 2026 03:17:34 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="wLlB1QVT"; 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 87CEB61F40 for ; Thu, 11 Jun 2026 03:17:30 +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 EFEBF673 for ; Thu, 11 Jun 2026 03:17:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1781140621; bh=lFNMkO5+jBe/Z3V6S6cMMoYj7AYz1ckX7F+A6GUsVrg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=wLlB1QVTgsjwaXpl1rQM5nCxTk3cW9d2MU2cIYu1uHVxRPsS9ffqKc4lVZvCqoDVd f3F3e91LS/n6enNP+7zoJ87Phk270uGDRkwzgjEMpid5W6D/HRTLCQdHm3VAZeIR8W InzdZ/SnpegS04g1l5K8wmC84NcOBwSC0SRfZk88= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 5/6] libcamera: global_configuration: Drop "YAML" from function documentation Date: Thu, 11 Jun 2026 04:17:21 +0300 Message-ID: <20260611011722.1767689-6-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" Signed-off-by: Laurent Pinchart --- src/libcamera/global_configuration.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libcamera/global_configuration.cpp b/src/libcamera/global_configuration.cpp index 46a285c3c4ea..6556cc524424 100644 --- a/src/libcamera/global_configuration.cpp +++ b/src/libcamera/global_configuration.cpp @@ -258,7 +258,7 @@ unsigned int GlobalConfiguration::version() const * \brief Retrieve the libcamera global configuration * * This returns the whole configuration stored in the top-level section - * `%configuration` of the YAML configuration file. + * `%configuration` of the configuration file. * * The requested part of the configuration can be accessed using \a ValueNode * methods. @@ -274,7 +274,7 @@ const ValueNode &GlobalConfiguration::configuration() const * \fn std::optional GlobalConfiguration::option(const std::initializer_list &confPath) const * \brief Retrieve the value of configuration option \a confPath * \tparam T The type of the retrieved configuration value - * \param[in] confPath Sequence of the YAML section names (excluding + * \param[in] confPath Sequence of the section names (excluding * `%configuration`) leading to the requested option * \return The value of the configuration item corresponding to \a confPath if * it exists in the configuration file, or no value otherwise @@ -282,7 +282,7 @@ const ValueNode &GlobalConfiguration::configuration() const /** * \brief Retrieve the value of configuration option \a confPath - * \param[in] confPath Sequence of the YAML section names (excluding + * \param[in] confPath Sequence of the section names (excluding * `%configuration`) leading to the requested list option, separated by dots * \return A vector of strings or no value if not found */