From patchwork Mon Jan 13 23:56:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 2639 Return-Path: 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 B42DF6017C for ; Tue, 14 Jan 2020 00:56:21 +0100 (CET) Received: from pendragon.ideasonboard.com (cpc108967-cmbg20-2-0-cust420.5-4.cable.virginm.net [81.101.7.165]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 03F0F30E for ; Tue, 14 Jan 2020 00:56:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1578959781; bh=9+E6NjtkL68M0eiO1D3gFBp7GVEw74Cp2Rn9K0PRyso=; h=From:To:Subject:Date:From; b=jDLxPIdEufOVeTlZnjL+RfzP2wvwBHRRBdoTuYrZAVTvYKCxa5xz051N3VSZ7tSlr iyIQBDZVlaSRmga1AmDqCCim2MNzkrQ2q3HdXSc4W2TrSODSOHkBmOEmtyw9D2v2RI YPiQCOhi5+4dn2OjGSKZlJlj6nRG5oMTPVRAqOns= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Tue, 14 Jan 2020 01:56:05 +0200 Message-Id: <20200113235605.19085-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: ipa_interface: Fix doxygen warning 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: , X-List-Received-Date: Mon, 13 Jan 2020 23:56:21 -0000 Doxygen generates the following warning: src/libcamera/ipa_interface.cpp:262: warning: explicit link request to 'dup()' could not be resolved Fix it by disabling link generation by prefixing the function name with a %. Fixes: 4b9bd6c3ad94 ("libcamera: ipa_interface: Document the ownership of dmabufs passed to map_buffers()") Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Niklas Söderlund --- src/libcamera/ipa_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/ipa_interface.cpp b/src/libcamera/ipa_interface.cpp index 900154497f82..5959e7deda6c 100644 --- a/src/libcamera/ipa_interface.cpp +++ b/src/libcamera/ipa_interface.cpp @@ -261,7 +261,7 @@ * The dmabuf file descriptors provided in \a buffers are borrowed from the * caller and are only guaranteed to be valid during the map_buffers() call. * Should the callee need to store a copy of the file descriptors, it shall - * duplicate them first with ::dup(). + * duplicate them first with ::%dup(). * * \sa libcamera::IPAInterface::mapBuffers() */