From patchwork Wed Sep 2 12:57:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 9452 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 A322BBF019 for ; Wed, 2 Sep 2020 12:57:52 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3A92F62984; Wed, 2 Sep 2020 14:57:52 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=uajain.com header.i=@uajain.com header.b="q/BpSSGE"; dkim-atps=neutral Received: from mail.uajain.com (static.126.159.217.95.clients.your-server.de [95.217.159.126]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2A21260374 for ; Wed, 2 Sep 2020 14:57:50 +0200 (CEST) From: Umang Jain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uajain.com; s=mail; t=1599051469; bh=wBtA7jZh8MXMrfU/ME2ekmuB6YnY52PmtVLmymnsMcU=; h=From:To:Cc:Subject; b=q/BpSSGEbKgtKvbeZOjvVl2bX/YIhJs7bbcPEZUwqGVwehOjXXUt4FhAD60xROA/s hq7GZzWbipeMfYn12nGQuVPRmigxa5xP315VH95KR2sY9n44f8UpV5ado4tuAj/Pvn 5a/daXXHeTpy8/gpuldHYrq4vGahgUgwcNf+k+ShBBEf8tVlrRAtZfhVrl2XrSY7Sj k07n+Jv7HkIijzZR3l7QJNKKfOR1N5oB8IpyqUc1ehldtNX7JZYZZo7ZuANN7GB0qp 0kWoEBFGIy4mkIFZQkLDwaQm1Md8aHyv10OGej2b1USsDbatlu+G1hzGm0fA11pavO LhrwQZe0NnCLg== To: libcamera-devel@lists.libcamera.org Date: Wed, 2 Sep 2020 18:27:43 +0530 Message-Id: <20200902125743.61649-1-email@uajain.com> Mime-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: buffer: Fix MappedBuffer::maps_ 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" Complete the brief for MappedBuffer::maps_ documentation. Fixes: b3383da79f1d ("libcamera: buffer: Create a MappedBuffer") Signed-off-by: Umang Jain Reviewed-by: Kieran Bingham Reviewed-by: Niklas Söderlund --- src/libcamera/buffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/buffer.cpp b/src/libcamera/buffer.cpp index a094737..03f628e 100644 --- a/src/libcamera/buffer.cpp +++ b/src/libcamera/buffer.cpp @@ -392,7 +392,7 @@ MappedBuffer::~MappedBuffer() /** * \var MappedBuffer::maps_ - * \brief Stores the internal + * \brief Stores the internal mapped planes * * MappedBuffer derived classes shall store the mappings they create in this * vector which is parsed during destruct to unmap any memory mappings which