From patchwork Tue Mar 19 11:35:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 743 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 831C0600FD for ; Tue, 19 Mar 2019 12:35:54 +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 2056E33A; Tue, 19 Mar 2019 12:35:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1552995354; bh=vrT8xOz9t+VBODYeEfTN9TAc6Do5RhulU9LdMh15PAA=; h=From:To:Cc:Subject:Date:From; b=hzyrNoEh58QLZfhMc7rNU1R9jYHlI0PgPEEbNqeH7GlosJvwYOJaxvpFxtBfxOHyT xwiNDrTv0qPMo02Ki9+o+ceIfUjRkju7xF7cSR05XF6veNIY14ZR4mA/jlyW3iZgmr uQ4uLWjAPwFyqGXc4qa5Fo0MNYT6tG7cnauDL/Ns= From: Kieran Bingham To: LibCamera Devel 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 Subject: [libcamera-devel] [PATCH] libcamera: v4l2_device: Fix trivial spelling errors X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2019 11:35:54 -0000 succcess -> success categorized -> categorised Signed-off-by: Kieran Bingham Acked-by: Jacopo Mondi --- src/libcamera/v4l2_device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp index a88a5f5ff036..889c63b3fb63 100644 --- a/src/libcamera/v4l2_device.cpp +++ b/src/libcamera/v4l2_device.cpp @@ -128,7 +128,7 @@ LOG_DEFINE_CATEGORY(V4L2) * height) and one to three planes with configurable line stride and a total * per-plane size in bytes. * - * Image formats, as defined by the V4L2 APIs, are categorized as packed, + * Image formats, as defined by the V4L2 APIs, are categorised as packed, * semi-planar and planar, and describe the layout of the image pixel components * stored in memory. * @@ -797,7 +797,7 @@ int V4L2Device::queueBuffer(Buffer *buffer) * This method dequeues the next available buffer from the device. If no buffer * is available to be dequeued it will return nullptr immediately. * - * \return A pointer to the dequeued buffer on succcess, or nullptr otherwise + * \return A pointer to the dequeued buffer on success, or nullptr otherwise */ Buffer *V4L2Device::dequeueBuffer() {