From patchwork Wed Jul 17 07:11:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1714 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 2357A61570 for ; Wed, 17 Jul 2019 09:12:03 +0200 (CEST) Received: from pendragon.ideasonboard.com (softbank126159202124.bbtec.net [126.159.202.124]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id A776633C for ; Wed, 17 Jul 2019 09:12:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1563347522; bh=i7pDOfDUYfrucpgXKJ1OLSOp6dai9OzXPXgCFosqczU=; h=From:To:Subject:Date:From; b=sQiwxmwP9yOZe1hcCecXe3/T9/RVDlWxFwYGM9oSQi6AXUewghDh1u78vGsN4gElG R3IDSmLFIjYy26tF3kjqrL4IFemvU1UILijzCuCuPdnmYSPB3avrWbhDbDQ+grW4mR e2utopUeJJzSkUvtFW4l1UGEjMRUAtIcgQTwdlI4= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 17 Jul 2019 10:11:28 +0300 Message-Id: <20190717071128.6192-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: pipeline: ipu3: Fix argument name mismatch 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: Wed, 17 Jul 2019 07:12:03 -0000 Fix an argument name mismatch between method declaration and definition. Reported-by: Paul Elder Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Niklas Söderlund --- 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 c27fe75577f5..827906d5cd2e 100644 --- a/src/libcamera/pipeline/ipu3/ipu3.cpp +++ b/src/libcamera/pipeline/ipu3/ipu3.cpp @@ -122,7 +122,7 @@ public: BufferPool *exportBuffers(); void freeBuffers(); - int start(std::vector> *buffer); + int start(std::vector> *buffers); int stop(); static int mediaBusToFormat(unsigned int code);