From patchwork Wed Oct 27 13:11:13 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 14369 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 3B767BF415 for ; Wed, 27 Oct 2021 13:11:18 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id EEFFF6487F; Wed, 27 Oct 2021 15:11:17 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="FTb6RNYm"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D3A9360123 for ; Wed, 27 Oct 2021 15:11:16 +0200 (CEST) Received: from Monstersaurus.local (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 848A5596; Wed, 27 Oct 2021 15:11:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1635340276; bh=jIkzyGPzPAZtvg32VExIbpguJDh19Oa2hJYNsvydm7o=; h=From:To:Cc:Subject:Date:From; b=FTb6RNYmiAyIen//oYTs/xhFNVSvUbxGI2Vp6n6eUmtPyY9BAiCTNR4iLGFk/090g V7HrdqA1WzLjJN+v9WY6w5sQnshL5BzEr81xuuiGCBxNAUoCB+Z7+mzDSwP1fHizJ9 hpE62u0mdbL4G1k1qEfbmMYtedKyQG1c51jCnRL0= From: Kieran Bingham To: libcamera devel Date: Wed, 27 Oct 2021 14:11:13 +0100 Message-Id: <20211027131113.2275437-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: pixel_format: remove duplicated return documentation 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 PixelFormat::toString() has two \return statements in its doxygen documentation. Remove the redundant one. Signed-off-by: Kieran Bingham Reviewed-by: Umang Jain Reviewed-by: Laurent Pinchart --- src/libcamera/pixel_format.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcamera/pixel_format.cpp b/src/libcamera/pixel_format.cpp index 54763fbf8e33..997aeb8a9290 100644 --- a/src/libcamera/pixel_format.cpp +++ b/src/libcamera/pixel_format.cpp @@ -132,7 +132,6 @@ std::string PixelFormat::toString() const /** * \brief Create a PixelFormat from a string - * \return Pixel format * \return The PixelFormat represented by the \a name if known, or an * invalid pixel format otherwise. */