From patchwork Sun Mar 28 12:59:07 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Fricke X-Patchwork-Id: 11740 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 0B370C32ED for ; Sun, 28 Mar 2021 12:59:40 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 2DE1D6877F; Sun, 28 Mar 2021 14:59:39 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=posteo.net header.i=@posteo.net header.b="TWEjKrHW"; dkim-atps=neutral Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 38AC56084F for ; Sun, 28 Mar 2021 14:59:38 +0200 (CEST) Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 9EA6E2400FC for ; Sun, 28 Mar 2021 14:59:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1616936377; bh=L65TK8StOLMfAG46xu/wzDFW+LUXTHtuXLjTzT8g5Mg=; h=From:To:Cc:Subject:Date:From; b=TWEjKrHW9VDPL9mi7kD//Ct/MEeRUsDFmEQjTyKQaCrZ5rgRKzALGesDNrA3L4/wG 1qNVQK/ADiw/5bD69kHcD6EYia/uFmP2t4wdq4dqWarnIjDmqqTR9mGWSycuyrAQsX Se8phCQcv7NRmZy4Amf6XI3+wlD5LMAqjm/zo7u6GFgsirJMbpIb4uJeEe5afg5OoW 3b3Zc/wMRaTORt+TUuCCR1xZ14S1PvXO6ZuK6SCvdqgy/T0ar1PMRNeiV7+zWBcHdy 0d5iz/QMKELDjkhA1oV8LEeM84/WoCw3GbI8T2YTzkvtNne+7ZMiMqS8yHBnxUjYqW NimhLFxDOMTQA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4F7bQK1GQMz6tmH; Sun, 28 Mar 2021 14:59:37 +0200 (CEST) From: Sebastian Fricke To: libcamera-devel@lists.libcamera.org Date: Sun, 28 Mar 2021 14:59:07 +0200 Message-Id: <20210328125906.25461-1-sebastian.fricke@posteo.net> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] pipeline: raspberryPi: Fix typo in comment 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" s/Will need to/We'll need to/ Signed-off-by: Sebastian Fricke Reviewed-by: Laurent Pinchart Reviewed-by: Naushir Patuck --- src/libcamera/pipeline/raspberrypi/raspberrypi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp index 2cac802c..378a5227 100644 --- a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp +++ b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp @@ -1141,7 +1141,7 @@ int PipelineHandlerRPi::prepareBuffers(Camera *camera) /* * Decide how many internal buffers to allocate. For now, simply look - * at how many external buffers will be provided. Will need to improve + * at how many external buffers will be provided. We'll need to improve * this logic. However, we really must have all streams allocate the same * number of buffers to simplify error handling in queueRequestDevice(). */