From patchwork Mon Jul 7 08:55:04 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 23750 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 5F330C3237 for ; Mon, 7 Jul 2025 08:55:42 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 071E668E83; Mon, 7 Jul 2025 10:55:42 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="AdPi1oVF"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 0F12168E83 for ; Mon, 7 Jul 2025 10:55:38 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:c79f:85df:e7f5:4c31]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 3BDFC190D; Mon, 7 Jul 2025 10:55:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1751878511; bh=oLjBvEwsCQYBU2LjyJQ+CLtdwcnLI/y+qAkom7x9HdE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=AdPi1oVFIwxc/lAepRhXGCj4ociuLKfO6+S2Kvor49Riy5hqAJelRa/PDs7xDVuJA xXyGYgrZk/W2NhfXukbsM5gRKFv4d6Kz0J1teXOG17zbMLZzdsSxYMLAb6gCJkbF1P nqGPgkkRztt7d4VbzJs38vFP4WRCobjKx6Wkb5cg= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug , Kieran Bingham , Paul Elder , Isaac Scott Subject: [PATCH v3 1/9] utils: gen-debug-controls: Remove line number from control description Date: Mon, 7 Jul 2025 10:55:04 +0200 Message-ID: <20250707085520.39777-2-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250707085520.39777-1-stefan.klug@ideasonboard.com> References: <20250707085520.39777-1-stefan.klug@ideasonboard.com> 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" The line numbers change so often that including them in the description creates too much noise in control_ids_debug.yaml. Output the path only. Signed-off-by: Stefan Klug Acked-by: Kieran Bingham Reviewed-by: Paul Elder Reviewed-by: Isaac Scott --- Changes in v3: - Collected tags Changes in v2: - Collected tag --- utils/gen-debug-controls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/gen-debug-controls.py b/utils/gen-debug-controls.py index 272597f4874f..53c8fa70d76d 100755 --- a/utils/gen-debug-controls.py +++ b/utils/gen-debug-controls.py @@ -107,7 +107,7 @@ def main(argv): p = m.file.relative_to(root_dir) desc = {'type': m.type, 'direction': 'out', - 'description': f'Debug control {m.name} found in {p}:{m.line}'} + 'description': f'Debug control {m.name} found in {p}'} if m.size is not None: desc['size'] = m.size