{"id":743,"url":"https://patchwork.libcamera.org/api/1.1/patches/743/?format=json","web_url":"https://patchwork.libcamera.org/patch/743/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/1.1/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":"<20190319113550.18507-1-kieran.bingham@ideasonboard.com>","date":"2019-03-19T11:35:50","name":"[libcamera-devel] libcamera: v4l2_device: Fix trivial spelling errors","commit_ref":"651f6973a09d63bae816614b8d2e028a1c052cb3","pull_url":null,"state":"accepted","archived":false,"hash":"b8a523211833de30eb95bd23b425eed08b74c66d","submitter":{"id":4,"url":"https://patchwork.libcamera.org/api/1.1/people/4/?format=json","name":"Kieran Bingham","email":"kieran.bingham@ideasonboard.com"},"delegate":null,"mbox":"https://patchwork.libcamera.org/patch/743/mbox/","series":[{"id":211,"url":"https://patchwork.libcamera.org/api/1.1/series/211/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=211","date":"2019-03-19T11:35:50","name":"[libcamera-devel] libcamera: v4l2_device: Fix trivial spelling errors","version":1,"mbox":"https://patchwork.libcamera.org/series/211/mbox/"}],"comments":"https://patchwork.libcamera.org/api/patches/743/comments/","check":"pending","checks":"https://patchwork.libcamera.org/api/patches/743/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 831C0600FD\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue, 19 Mar 2019 12:35:54 +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 2056E33A;\n\tTue, 19 Mar 2019 12:35:54 +0100 (CET)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1552995354;\n\tbh=vrT8xOz9t+VBODYeEfTN9TAc6Do5RhulU9LdMh15PAA=;\n\th=From:To:Cc:Subject:Date:From;\n\tb=hzyrNoEh58QLZfhMc7rNU1R9jYHlI0PgPEEbNqeH7GlosJvwYOJaxvpFxtBfxOHyT\n\txwiNDrTv0qPMo02Ki9+o+ceIfUjRkju7xF7cSR05XF6veNIY14ZR4mA/jlyW3iZgmr\n\tuQ4uLWjAPwFyqGXc4qa5Fo0MNYT6tG7cnauDL/Ns=","From":"Kieran Bingham <kieran.bingham@ideasonboard.com>","To":"LibCamera Devel <libcamera-devel@lists.libcamera.org>","Date":"Tue, 19 Mar 2019 11:35:50 +0000","Message-Id":"<20190319113550.18507-1-kieran.bingham@ideasonboard.com>","X-Mailer":"git-send-email 2.19.1","MIME-Version":"1.0","Content-Transfer-Encoding":"8bit","Subject":"[libcamera-devel] [PATCH] libcamera: v4l2_device: Fix trivial\n\tspelling errors","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.23","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, 19 Mar 2019 11:35:54 -0000"},"content":"succcess -> success\n  categorized -> categorised\n\nSigned-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>\n---\n src/libcamera/v4l2_device.cpp | 4 ++--\n 1 file changed, 2 insertions(+), 2 deletions(-)","diff":"diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp\nindex a88a5f5ff036..889c63b3fb63 100644\n--- a/src/libcamera/v4l2_device.cpp\n+++ b/src/libcamera/v4l2_device.cpp\n@@ -128,7 +128,7 @@ LOG_DEFINE_CATEGORY(V4L2)\n  * height) and one to three planes with configurable line stride and a total\n  * per-plane size in bytes.\n  *\n- * Image formats, as defined by the V4L2 APIs, are categorized as packed,\n+ * Image formats, as defined by the V4L2 APIs, are categorised as packed,\n  * semi-planar and planar, and describe the layout of the image pixel components\n  * stored in memory.\n  *\n@@ -797,7 +797,7 @@ int V4L2Device::queueBuffer(Buffer *buffer)\n  * This method dequeues the next available buffer from the device. If no buffer\n  * is available to be dequeued it will return nullptr immediately.\n  *\n- * \\return A pointer to the dequeued buffer on succcess, or nullptr otherwise\n+ * \\return A pointer to the dequeued buffer on success, or nullptr otherwise\n  */\n Buffer *V4L2Device::dequeueBuffer()\n {\n","prefixes":["libcamera-devel"]}