From patchwork Tue Aug 13 14:14:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 20904 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 1FE7FBDB13 for ; Tue, 13 Aug 2024 14:14:36 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 0697E633B5; Tue, 13 Aug 2024 16:14:35 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="wP9T51Zc"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 56CD363382 for ; Tue, 13 Aug 2024 16:14:33 +0200 (CEST) Received: from Monstersaurus.tail69b4.ts.net (cpc89244-aztw30-2-0-cust6594.18-1.cable.virginm.net [86.31.185.195]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1F2FD7CC; Tue, 13 Aug 2024 16:13:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1723558416; bh=iplI3nO93BIkE9BYXoiI3sUX0p/rNh74wwBelJCjzZI=; h=From:To:Cc:Subject:Date:From; b=wP9T51Zc5f2O+Uu/KMy7IcT65k1dL7FSOlhaIya/1FS1FrImWMc4MY9wjpMYUgLUf cG6TE0y2SRYEf7q1DhlkrX60vUIsYdO+dW/5rBRHwMaWDfj+xKtRt1hSyxShc0BzkB NtpauZdUa6eVtDgibiBQKBbxd9DI/xkfctuGMm2Q= From: Kieran Bingham To: libcamera devel Cc: Kieran Bingham Subject: [PATCH] libcamera: pipeline: simple: Fix 'default' typo in comment Date: Tue, 13 Aug 2024 15:14:29 +0100 Message-Id: <20240813141429.2042369-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 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" Fix a small typo in the comment regarding the default routing table configuration. Signed-off-by: Kieran Bingham Reviewed-by: Milan Zamazal Reviewed-by: Laurent Pinchart --- src/libcamera/pipeline/simple/simple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp index 1e7ec7d97255..49f9137b9363 100644 --- a/src/libcamera/pipeline/simple/simple.cpp +++ b/src/libcamera/pipeline/simple/simple.cpp @@ -1617,7 +1617,7 @@ bool SimplePipelineHandler::match(DeviceEnumerator *enumerator) /* * Reset the routing table to its default state * to make sure entities are enumerate according - * to the defaul routing configuration. + * to the default routing configuration. */ ret = resetRoutingTable(subdev.get()); if (ret) {