mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Driver names must follow kernel kebab-case convention before they are exposed as UAPI via driver_override. Rename the nova-drm module from "Nova" to "nova-drm" and the nova-core module from "NovaCore" to "nova-core". Update NOVA_CORE_MODULE_NAME to match the renamed nova-core module. Suggested-by: Gary Guo <gary@garyguo.net> Reviewed-by: Gary Guo <gary@garyguo.net> Reviewed-by: John Hubbard <jhubbard@nvidia.com> Acked-by: Timur Tabi <ttabi@nvidia.com> Closes: https://github.com/Rust-for-Linux/linux/issues/1228 Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com> Link: https://patch.msgid.link/20260507185012.1527139-2-yphbchou0911@gmail.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
18 lines
297 B
Rust
18 lines
297 B
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//! Nova DRM Driver
|
|
|
|
mod driver;
|
|
mod file;
|
|
mod gem;
|
|
|
|
use crate::driver::NovaDriver;
|
|
|
|
kernel::module_auxiliary_driver! {
|
|
type: NovaDriver,
|
|
name: "nova-drm",
|
|
authors: ["Danilo Krummrich"],
|
|
description: "Nova GPU driver",
|
|
license: "GPL v2",
|
|
}
|