From patchwork Fri Oct 18 15:39:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 2195 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 BE5D5600CA for ; Fri, 18 Oct 2019 17:39:26 +0200 (CEST) Received: from Q.local (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2E716D84; Fri, 18 Oct 2019 17:39:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1571413166; bh=Z/lHtnk5whkS0wIcAd507gZ86MdeoT6mNWZYj3l7yOI=; h=From:To:Cc:Subject:Date:From; b=OsX17QY667xKwGe2GqQC8Jr4M6rmX/5BOUl7qnhOkmIj5hH8ALS4jaeyaB+8fFXxi AbNYSf+kH7z7QRA7t6uA3S4bwHTiNpzS2/7cJIebO8jfNoyBGN53DX+m5FaEqviRSP Ia6RS1UIX2nO4AqiJbTOyLV+TZtaar6kGE40Qmoo= From: Kieran Bingham To: LibCamera Devel Date: Fri, 18 Oct 2019 16:39:20 +0100 Message-Id: <20191018153920.13394-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: pipeline_handler: Fix trivial spelling 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-List-Received-Date: Fri, 18 Oct 2019 15:39:26 -0000 Signaled is an American spelling. s/signaled/signalled/ Fixes: b2c06cf40975 ("libcamera: Handle request completion explicitly in pipeline handlers") Signed-off-by: Kieran Bingham Acked-by: Laurent Pinchart --- src/libcamera/pipeline_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp index cb4337e50eb6..bf8c86d35c4f 100644 --- a/src/libcamera/pipeline_handler.cpp +++ b/src/libcamera/pipeline_handler.cpp @@ -353,7 +353,7 @@ const ControlInfoMap &PipelineHandler::controls(Camera *camera) * Pipeline handlers shall override this method. The base implementation in the * PipelineHandler class keeps track of queued requests in order to ensure * completion of all requests when the pipeline handler is stopped with stop(). - * Requests completion shall be signaled by the pipeline handler using the + * Requests completion shall be signalled by the pipeline handler using the * completeRequest() method. * * \return 0 on success or a negative error code otherwise