{"id":2769,"url":"https://patchwork.libcamera.org/api/patches/2769/?format=json","web_url":"https://patchwork.libcamera.org/patch/2769/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/projects/1/?format=json","name":"libcamera","link_name":"libcamera","list_id":"libcamera_core","list_email":"libcamera-devel@lists.libcamera.org","web_url":"","scm_url":"","webscm_url":""},"msgid":"<20200204155717.7784-1-kieran.bingham@ideasonboard.com>","date":"2020-02-04T15:57:17","name":"[libcamera-devel] libcamera: framebuffer_allocator: Fix spelling","commit_ref":"fd6f3e2a65fe7842a9ff357299607b07a4e36047","pull_url":null,"state":"accepted","archived":false,"hash":"83ec8f9f994fbb1f387ba93fecb7d0aa06dc807c","submitter":{"id":4,"url":"https://patchwork.libcamera.org/api/people/4/?format=json","name":"Kieran Bingham","email":"kieran.bingham@ideasonboard.com"},"delegate":null,"mbox":"https://patchwork.libcamera.org/patch/2769/mbox/","series":[{"id":660,"url":"https://patchwork.libcamera.org/api/series/660/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=660","date":"2020-02-04T15:57:17","name":"[libcamera-devel] libcamera: framebuffer_allocator: Fix spelling","version":1,"mbox":"https://patchwork.libcamera.org/series/660/mbox/"}],"comments":"https://patchwork.libcamera.org/api/patches/2769/comments/","check":"pending","checks":"https://patchwork.libcamera.org/api/patches/2769/checks/","tags":{},"headers":{"Return-Path":"<kieran.bingham@ideasonboard.com>","Received":["from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id CC02560446\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue,  4 Feb 2020 16:57:23 +0100 (CET)","from localhost.localdomain\n\t(cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 2336FA58;\n\tTue,  4 Feb 2020 16:57:23 +0100 (CET)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1580831843;\n\tbh=B7joAZaqciNTmhkZjBfvUOIz7BtIuhKliOGYWok1r00=;\n\th=From:To:Cc:Subject:Date:From;\n\tb=sPDlvq9Uhhibj7IrRPsQvV2wBykJEIzYkrAGAxUmGOMPc0u1/Ew63RzOBjTl8bqlx\n\tk56ZHxJ/gDyU8x6Xny+BrGHCVOVdc/I4nFCd1e0J14LcjlaJ3v7/liWe1uNeu6FHHI\n\tPs+cRD49mQ80e30mbx3xSziUcuNs3WuKkMBiE3gQ=","From":"Kieran Bingham <kieran.bingham@ideasonboard.com>","To":"LibCamera Devel <libcamera-devel@lists.libcamera.org>","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","Content-Transfer-Encoding":"8bit","Subject":"[libcamera-devel] [PATCH] libcamera: framebuffer_allocator: Fix\n\tspelling","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","X-List-Received-Date":"Tue, 04 Feb 2020 15:57:24 -0000"},"content":"Fix two trivial issues in the documentation of the FrameBufferAllocater\nclass.\n\nSigned-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>\n---\n src/libcamera/framebuffer_allocator.cpp | 4 ++--\n 1 file changed, 2 insertions(+), 2 deletions(-)","diff":"diff --git a/src/libcamera/framebuffer_allocator.cpp b/src/libcamera/framebuffer_allocator.cpp\nindex 4ced10cda2e3..e79f4a8f65c8 100644\n--- a/src/libcamera/framebuffer_allocator.cpp\n+++ b/src/libcamera/framebuffer_allocator.cpp\n@@ -33,7 +33,7 @@ LOG_DEFINE_CATEGORY(Allocator)\n  * FrameBuffer instances. This makes libcamera a user of buffers exported by\n  * other devices (such as displays or video encoders), or allocated from an\n  * external allocator (such as ION on Android platforms). In some situations,\n- * applications do not have any mean to allocate or get hold of suitable\n+ * applications do not have any means to allocate or get hold of suitable\n  * buffers, for instance when no other device is involved, on Linux platforms\n  * that lack a centralized allocator. The FrameBufferAllocator class provides a\n  * buffer allocator that can be used in these situations.\n@@ -168,7 +168,7 @@ int FrameBufferAllocator::free(Stream *stream)\n \n /**\n  * \\brief Retrieve the buffers allocated for a \\a stream\n- * \\param[in] stream The stream to retrive buffers for\n+ * \\param[in] stream The stream to retrieve buffers for\n  *\n  * This method shall only be called after successfully allocating buffers for\n  * \\a stream with allocate(). The returned buffers are valid until free() is\n","prefixes":["libcamera-devel"]}