mirror of
https://github.com/torvalds/linux.git
synced 2025-11-02 09:40:27 +02:00
Commit 38559da6af ("rust: module: introduce `authors` key") introduced
a new `authors` key to support multiple module authors, while keeping
the old `author` key for backward compatibility.
Now that most in-tree modules have migrated to `authors`, remove:
1. The deprecated `author` key support from the module macro
2. Legacy `author` entries from remaining modules
Signed-off-by: Guilherme Giacomo Simoes <trintaeoitogc@gmail.com>
Acked-by: Andreas Hindborg <a.hindborg@kernel.org>
Reviewed-by: Benno Lossin <lossin@kernel.org>
Acked-by: Danilo Krummrich <dakr@kernel.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20250609122200.179307-1-trintaeoitogc@gmail.com
[ Reworded slightly. - Miguel ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
18 lines
303 B
Rust
18 lines
303 B
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//! Nova DRM Driver
|
|
|
|
mod driver;
|
|
mod file;
|
|
mod gem;
|
|
mod uapi;
|
|
|
|
use crate::driver::NovaDriver;
|
|
|
|
kernel::module_auxiliary_driver! {
|
|
type: NovaDriver,
|
|
name: "Nova",
|
|
authors: ["Danilo Krummrich"],
|
|
description: "Nova GPU driver",
|
|
license: "GPL v2",
|
|
}
|