From patchwork Tue Feb 4 15:57:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 2769 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 CC02560446 for ; Tue, 4 Feb 2020 16:57:23 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2336FA58; Tue, 4 Feb 2020 16:57:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1580831843; bh=B7joAZaqciNTmhkZjBfvUOIz7BtIuhKliOGYWok1r00=; h=From:To:Cc:Subject:Date:From; b=sPDlvq9Uhhibj7IrRPsQvV2wBykJEIzYkrAGAxUmGOMPc0u1/Ew63RzOBjTl8bqlx k56ZHxJ/gDyU8x6Xny+BrGHCVOVdc/I4nFCd1e0J14LcjlaJ3v7/liWe1uNeu6FHHI Ps+cRD49mQ80e30mbx3xSziUcuNs3WuKkMBiE3gQ= From: Kieran Bingham To: LibCamera Devel Date: Tue, 4 Feb 2020 15:57:17 +0000 Message-Id: <20200204155717.7784-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: framebuffer_allocator: Fix spelling 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: Tue, 04 Feb 2020 15:57:24 -0000 Fix two trivial issues in the documentation of the FrameBufferAllocater class. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- src/libcamera/framebuffer_allocator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/framebuffer_allocator.cpp b/src/libcamera/framebuffer_allocator.cpp index 4ced10cda2e3..e79f4a8f65c8 100644 --- a/src/libcamera/framebuffer_allocator.cpp +++ b/src/libcamera/framebuffer_allocator.cpp @@ -33,7 +33,7 @@ LOG_DEFINE_CATEGORY(Allocator) * FrameBuffer instances. This makes libcamera a user of buffers exported by * other devices (such as displays or video encoders), or allocated from an * external allocator (such as ION on Android platforms). In some situations, - * applications do not have any mean to allocate or get hold of suitable + * applications do not have any means to allocate or get hold of suitable * buffers, for instance when no other device is involved, on Linux platforms * that lack a centralized allocator. The FrameBufferAllocator class provides a * buffer allocator that can be used in these situations. @@ -168,7 +168,7 @@ int FrameBufferAllocator::free(Stream *stream) /** * \brief Retrieve the buffers allocated for a \a stream - * \param[in] stream The stream to retrive buffers for + * \param[in] stream The stream to retrieve buffers for * * This method shall only be called after successfully allocating buffers for * \a stream with allocate(). The returned buffers are valid until free() is