From patchwork Mon Jun 10 22:07:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 1390 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 5501F61FBF for ; Tue, 11 Jun 2019 00:08:04 +0200 (CEST) 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 D3BB7E58; Tue, 11 Jun 2019 00:08:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1560204484; bh=mQJunhcUrXhXnKphxYvUBiWxyeD/eIQXW3qH2uU75+g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jhVA2ulrQDXKbIONGx0OzamuncyV08FRb95gd63HP8KMWgf+OzfA4MUjT9jSGPHOM T/bUW/SGTFQFUCykwNbaZcu79AR9Y1/R62OJ2ILChxCIT4G50eSS1OyuFdHy6Y9KYH jlmBrcWijPwsnbi49gAsj2dg9Qnx7RR+LXjZrt48= From: Kieran Bingham To: LibCamera Devel Date: Mon, 10 Jun 2019 23:07:58 +0100 Message-Id: <20190610220759.7192-2-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190610220759.7192-1-kieran.bingham@ideasonboard.com> References: <20190610220759.7192-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/3] libcamera: pipeline: ipu3: Fix spelling 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: Mon, 10 Jun 2019 22:08:04 -0000 Fix trivial spelling of queueing. Signed-off-by: Kieran Bingham Acked-by: Jacopo Mondi --- src/libcamera/pipeline/ipu3/ipu3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp index 05005c42106b..f2bdecbac20f 100644 --- a/src/libcamera/pipeline/ipu3/ipu3.cpp +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp @@ -909,7 +909,7 @@ void IPU3CameraData::imguOutputBufferReady(Buffer *buffer) /* Request not completed yet, return here. */ return; - /* Complete the pending requests in queuing order. */ + /* Complete the pending requests in queueing order. */ while (1) { request = queuedRequests_.front(); if (request->hasPendingBuffers())