From patchwork Thu Mar 17 10:47:40 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 15468 X-Patchwork-Delegate: umang.jain@ideasonboard.com 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 DF443C3262 for ; Thu, 17 Mar 2022 10:48:00 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 802BA604DC; Thu, 17 Mar 2022 11:48:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1647514080; bh=sO9+JEz3qwcUC3QbrCXg8Ts2ioYTSkrHyQdXZA6qDdM=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=TQ+/83xOU/ebdMaW13st2sGlq0P5WyE7PuT4yoXy96Z7PvZn5ODjDQXaHcs/VcH8Y BxHpLW+k+GQv1Oaq6/vgMjR0dkVvaN05h98LYkDrbo3I7MSeh267/edpcWbF9Tg/FF TmEmsp2oy1rnSrBkRUqd+hROGKgsyr3mFOCyy6L3ccs86XCzAILuW9iNLbGOhnfXWW qDDf22nUoGRl1uC5xTV9dEHZrfYgMvwyrru3LcQJAifkW41vUgGZwSBPedfbGHYm4F XVpAMrfIxyvCcOkrexHTcbd5P/W26oSCHrf2HRccBGo3l/4xPwSrNPVNd0aKUaOia3 4BOeWQzySGZTg== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6D6CC604DC for ; Thu, 17 Mar 2022 11:47:59 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="UPVUqUYM"; dkim-atps=neutral Received: from perceval.ideasonboard.com (unknown [103.251.226.83]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 4ED63E2C; Thu, 17 Mar 2022 11:47:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1647514079; bh=sO9+JEz3qwcUC3QbrCXg8Ts2ioYTSkrHyQdXZA6qDdM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UPVUqUYM4DYyO9Zd3JNr7pNQZR7lEyPKPnYwuH8HQru1g2LCRHZaTxzUzeq3B+uBX uVGBds7hbk8zD5dB/R9Se9gKdzL8V3lwmf/KPSCnAFtvbO171m4KvQs9SHwboYdibz LrzrA27+5dy1adxOm249+y+WKcP7y5RUsl4sk7o4= To: libcamera-devel@lists.libcamera.org Date: Thu, 17 Mar 2022 16:17:40 +0530 Message-Id: <20220317104740.569310-4-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220317104740.569310-1-umang.jain@ideasonboard.com> References: <20220317104740.569310-1-umang.jain@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 3/3] libcamera: framebuffer: Add a missing space in 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: , X-Patchwork-Original-From: Umang Jain via libcamera-devel From: Umang Jain Reply-To: Umang Jain Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" s/bytesused/bytes used/ Signed-off-by: Umang Jain Reviewed-by: Laurent Pinchart Acked-by: Kieran Bingham --- src/libcamera/framebuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/framebuffer.cpp b/src/libcamera/framebuffer.cpp index 049b1c7e..142e2af7 100644 --- a/src/libcamera/framebuffer.cpp +++ b/src/libcamera/framebuffer.cpp @@ -30,7 +30,7 @@ LOG_DEFINE_CATEGORY(Buffer) * \brief Metadata related to a captured frame * * The FrameMetadata structure stores all metadata related to a captured frame, - * as stored in a FrameBuffer, such as capture status, timestamp and bytesused. + * as stored in a FrameBuffer, such as capture status, timestamp and bytes used. */ /**