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 39FEBFD876A for ; Tue, 17 Mar 2026 13:54:03 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9B1DD10E425; Tue, 17 Mar 2026 13:54:02 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="ZRMw4Ufx"; 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 0B88610E650; Tue, 17 Mar 2026 13:54:01 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id B966143E0B; Tue, 17 Mar 2026 13:54:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C3C6C4CEF7; Tue, 17 Mar 2026 13:53:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773755640; bh=oQnJBliy4UmovXuKIGveUoP+6zPRGCmE26dZ5bvfz2Y=; h=Date:Subject:Cc:To:From:References:In-Reply-To:From; b=ZRMw4Ufxj1mjyu8BeFWxKR67PKXAlqkTNAxh0t7lvwIJdAaKSXCZ9SiOBN7CJTDlB NRGhJoKO/cVU/ULnHzFzQEOkZBuQxZKi8rduAwauMq/iHI4bBa6pLeB1tYWwGEbs5/ +FNyUKr8oK0xk5Fw4dV4psuN/vb2EBy81JCnJw3i8ldWLleG4oqELE9MQQB6dmFCNe vz9k06m2t7W35d00bL3wgsmhBhniIxYA7pQWXsH5oZ9oghzgC15oK3WzUfPNQXQtbN V1q0yHFYx2oF8Ils1MY13c09t7ze3H7C0bia5PAsnAtOIpK/uGtssG0T9v5lrNs8QT kZCh6PA5XrsHg== Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Tue, 17 Mar 2026 14:53:57 +0100 Message-Id: Subject: Re: [PATCH v3 2/2] gpu: nova-drm: rename nova to nova-drm Cc: "Cheng-Yang Chou" , , , , , , , , , To: "Alexandre Courbot" From: "Danilo Krummrich" References: <20260317092304.424377-1-yphbchou0911@gmail.com> In-Reply-To: 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Tue Mar 17, 2026 at 2:20 PM CET, Alexandre Courbot wrote: > On Tue Mar 17, 2026 at 6:23 PM JST, Cheng-Yang Chou wrote: >> Rename the nova-drm driver directory from drivers/gpu/drm/nova/ to >> drivers/gpu/drm/nova-drm/ and the top-level source file from nova.rs >> to nova_drm.rs (matching the object name nova_drm.o) to follow the >> kebab-case naming convention already used by the auxiliary device name. >> >> Update MAINTAINERS, Kconfig, and Makefile references accordingly. >> Update the Kconfig help text to reflect the new module name nova-drm. >> >> Link: https://github.com/Rust-for-Linux/linux/issues/1228 >> Signed-off-by: Cheng-Yang Chou >> Reviewed-by: John Hubbard >> --- >> Changes in v3: >> - Rename subject line (John Hubbard) >> >> MAINTAINERS | 6 +++--- >> drivers/gpu/drm/Kconfig | 2 +- >> drivers/gpu/drm/Makefile | 2 +- >> drivers/gpu/drm/{nova =3D> nova-drm}/Kconfig | 2 +- >> drivers/gpu/drm/nova-drm/Makefile | 3 +++ >> drivers/gpu/drm/{nova =3D> nova-drm}/driver.rs | 0 >> drivers/gpu/drm/{nova =3D> nova-drm}/file.rs | 0 >> drivers/gpu/drm/{nova =3D> nova-drm}/gem.rs | 0 > > That `drm/nova-drm` reads a bit awkwardly to me and feels unnecessary. > Even `tegra-drm` is in `drm/tegra`. Well, that's why I named it "nova" in the first place, but I don't want KBUILD_MODNAME to diverge from the directory name and I also don't want the driver name to diverge from KBUILD_MODNAME. So, if we rename the driver name to nova-drm, then the other parts should b= e renamed as well.