From patchwork Mon Mar 31 14:43:40 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 23074 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 645D5C3213 for ; Mon, 31 Mar 2025 14:44:02 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D158068989; Mon, 31 Mar 2025 16:44:01 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="jcOc0W8M"; dkim-atps=neutral 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 A8BC86897A for ; Mon, 31 Mar 2025 16:43:59 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:823a:c275:e8b5:b937]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E1727725; Mon, 31 Mar 2025 16:42:07 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1743432128; bh=UymquCGj99s4ye8Sm8gcK79C2o1pEYuMbFnBzDnkY+E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jcOc0W8MwMZxDGhCSNRNYNMQaZmllaWjpBSrkeGy2IHIfSTosyNu+xxk3FdYbsEOX 3EYRW/cEGWRcJt5wZRzUXqjkNlRkHlcprttrtqerBKmcXsUQpY8zCZRajobjdvRCUI 5TNS0dzfOcvnXH+Q+zIpohbuYoITC4sBC0+s1R5s= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH 1/9] utils: gen-debug-controls: Remove line number from control description Date: Mon, 31 Mar 2025 16:43:40 +0200 Message-ID: <20250331144352.736700-2-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250331144352.736700-1-stefan.klug@ideasonboard.com> References: <20250331144352.736700-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 --- 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