From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D1C2BCCF2F2 for ; Mon, 19 Jan 2026 12:05:20 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AE40A10E409; Mon, 19 Jan 2026 12:05:18 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="qVqG8f98"; dkim-atps=neutral Received: from sea.source.kernel.org (sea.source.kernel.org [172.234.252.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8DEDC10E405; Mon, 19 Jan 2026 12:05:17 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id EBF5543BBB; Mon, 19 Jan 2026 12:05:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0CF2C116C6; Mon, 19 Jan 2026 12:05:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768824316; bh=x7rEGJPHMBLIdc7lqY3U1p+7lSYSCw4JvQMi+nq6oLE=; h=From:To:Cc:Subject:Date:From; b=qVqG8f98lfbmGT3DNofvd2SQdF704uDRKOCwOh95+ORICe/NG7/2feus3rQ7OpUId c0fpsdLI/LI1Q0AF+cbzzud9MRoy87MgnxRpQfNl/bWE4ZIz02bIuE1fhgIykWyD5N tC50meQIUnSccXvfjvjQTnnMgjfsU5hIlw316ftdnbB81MPwf0YPO7eCDVsNUo8vKJ CqGW+qIV0IWbHs8v2ShvQZTwAsSovcxJmOl8Uny3gJOUYaX7A+0iJTswVDPTs4gM6n CmD62/Moa5KInX+fVjrxq5yLIOEqlc0pX0y0MCCd+eGSehX6rucZL+wkpJiBtvn3jZ bQSgQdv553N3w== Received: from mchehab by mail.kernel.org with local (Exim 4.99) (envelope-from ) id 1vho0Q-00000001Zj7-350e; Mon, 19 Jan 2026 13:05:14 +0100 From: Mauro Carvalho Chehab To: Jonathan Corbet Cc: Mauro Carvalho Chehab , Alex Shi , Carlos Bilbao , David Airlie , Federico Vaga , Hu Haowen <2023002089@link.tyut.edu.cn>, Jani Nikula , Joonas Lahtinen , Mauro Carvalho Chehab , Nathan Chancellor , Nicolas Schier , Rodrigo Vivi , Simona Vetter , Tvrtko Ursulin , Yanteng Si , dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, linux-doc@vger.kernel.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, workflows@vger.kernel.org, =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= , Andy Shevchenko , Avadhut Naik , Chenguang Zhao , David Disseldorp , Dongliang Mu , Gang Yan , Kees Cook , Masahiro Yamada , Miguel Ojeda , Randy Dunlap , Shuah Khan , Steven Rostedt , Tamir Duberstein , Vincent Mailhol , WangYuli Subject: [PATCH 0/9] docs: Fix kernel-doc -Werror and moves it to tools/docs Date: Mon, 19 Jan 2026 13:04:55 +0100 Message-ID: X-Mailer: git-send-email 2.52.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Hi Jon, After a restful weekend and revisiting both yours and my series, I'm opting to send a patch series merging both into one: - The first 4 patches are from my series (no changes since v5): https://lore.kernel.org/linux-doc/cover.1768642102.git.mchehab+huawei@kernel.org/T/#m81211c0ff38bbaa82b8b0b6606f242ccc0c2a9ac - It follows by the 2 patches from your renaming series: https://lore.kernel.org/linux-doc/20260119111745.4694546b@foz.lan/T/#m51099c31a99dccccdb4d17cbaadc818e9e4df8c4 with the fix I proposed for kernel-doc to find its libraries I added 3 patches afterwards: - patch 5: move possible return values from docstring to helper message; - patch 6: improve MsgFormatter description; - patch 7: moves kerneldoc_bin from conf.py to the sphinx/kerneldoc.py (this is now just a debugging message - no need to pick it from env) IMO, this series is ready to be merged. NOTE: I didn't rename kernel-doc to kernel_doc.py nor added any symlinks. If we want some day to use sphinx autoparse extension, we can do it later. I guess we can also revisit it during -rc period, if needed. Regards, Mauro Jonathan Corbet (2): docs: kdoc: remove support for an external kernel-doc from sphinx docs: kdoc: move kernel-doc to tools/docs Mauro Carvalho Chehab (7): docs: kdoc: fix logic to handle unissued warnings docs: kdoc: avoid error_count overflows docs: kdoc: ensure that comments are using our coding style docs: kdoc: some fixes to kernel-doc comments docs: kdoc: move the return values to the helper message docs: kdoc: improve description of MsgFormatter docs: conf.py: get rid of the now unused kerneldoc_bin env var Documentation/conf.py | 4 - Documentation/doc-guide/kernel-doc.rst | 8 +- Documentation/kbuild/kbuild.rst | 2 +- Documentation/process/coding-style.rst | 2 +- Documentation/sphinx/kerneldoc.py | 60 +++---------- .../it_IT/doc-guide/kernel-doc.rst | 8 +- .../sp_SP/process/coding-style.rst | 2 +- .../zh_CN/doc-guide/kernel-doc.rst | 10 +-- .../translations/zh_CN/kbuild/kbuild.rst | 2 +- .../zh_CN/process/coding-style.rst | 2 +- .../zh_TW/process/coding-style.rst | 2 +- MAINTAINERS | 2 - Makefile | 2 +- drivers/gpu/drm/i915/Makefile | 2 +- scripts/kernel-doc | 1 - tools/docs/find-unused-docs.sh | 2 +- .../kernel-doc.py => tools/docs/kernel-doc | 89 ++++++++++++------- tools/docs/sphinx-build-wrapper | 2 +- tools/lib/python/kdoc/kdoc_parser.py | 35 ++++++-- 19 files changed, 120 insertions(+), 117 deletions(-) delete mode 120000 scripts/kernel-doc rename scripts/kernel-doc.py => tools/docs/kernel-doc (88%) -- 2.52.0