From patchwork Fri Jan 12 05:17:31 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13517953 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 0EF67C4707C for ; Fri, 12 Jan 2024 05:17:37 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3D27A10E02D; Fri, 12 Jan 2024 05:17:37 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7772E10E02D for ; Fri, 12 Jan 2024 05:17:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=KaXHBB1lQIJmdSrt3Oq4GYxXze7lBTy8oSpYLRXSEvs=; b=p6EUstRNcwrw2/B5R5yy5+Q7d3 Dz5SteK7fA7mjcanZQtSPsjlQrX9USO0ttFvM6yCjuWsIS6NyDursvEYsU8L4WiFqt7X8zZZ06yjb TjhhTh6dSF0o/2WjJfBGZpHIxsS12p1HijhrVsrms3lMh4RNX1C2udKSpRYQv6B5x8nFJ+r3Ax73s mzUWwdAymd72VQIE0eeMp0P4CY8nkkwL3U424EyDtxvJPlAr5cGML2glMCH3/Y5MXznaQngufJau4 PXH5L1y2dEnBW0OXOROREXz2v9SqFKBa6+lmLoqI/wWxRipvywC7MfPLEUgLtPakfWQ0BZXlT1orf 9U+xqBUQ==; Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1rO9v9-001vL0-2m; Fri, 12 Jan 2024 05:17:31 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH] drm/doc: internals: remove section on PCI legacy support Date: Thu, 11 Jan 2024 21:17:31 -0800 Message-ID: <20240112051731.15722-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Thomas Zimmermann , Jonathan Corbet , Randy Dunlap , linux-doc@vger.kernel.org, dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" The functions that were described in this section of drm-internals.rst were removed in NOV-2023, along with all of the kernel-doc comments in the source file. This now causes a docs build warning, so remove that section of the documentation also. drivers/gpu/drm/drm_pci.c:1: warning: no structured comments found Fixes: 2504c7ec728b ("drm: Remove source code for non-KMS drivers") Signed-off-by: Randy Dunlap Cc: Thomas Zimmermann Cc: David Airlie Cc: Daniel Vetter Cc: dri-devel@lists.freedesktop.org Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org --- Documentation/gpu/drm-internals.rst | 12 ------------ 1 file changed, 12 deletions(-) diff -- a/Documentation/gpu/drm-internals.rst b/Documentation/gpu/drm-internals.rst --- a/Documentation/gpu/drm-internals.rst +++ b/Documentation/gpu/drm-internals.rst @@ -153,18 +153,6 @@ Managed Resources .. kernel-doc:: include/drm/drm_managed.h :internal: -Bus-specific Device Registration and PCI Support ------------------------------------------------- - -A number of functions are provided to help with device registration. The -functions deal with PCI and platform devices respectively and are only -provided for historical reasons. These are all deprecated and shouldn't -be used in new drivers. Besides that there's a few helpers for pci -drivers. - -.. kernel-doc:: drivers/gpu/drm/drm_pci.c - :export: - Open/Close, File Operations and IOCTLs ======================================