diff options
| author | Guilherme Giacomo Simoes <[email protected]> | 2025-06-09 12:22:00 +0000 |
|---|---|---|
| committer | Miguel Ojeda <[email protected]> | 2025-06-23 23:01:13 +0000 |
| commit | bfb9e46b5bff33ebaac49cceb27256caceddeee5 (patch) | |
| tree | bbc9788c110d2cbeb7c293803ab76d09ab1eeeb3 /samples/rust/rust_driver_auxiliary.rs | |
| parent | rust: list: replace unwrap() with ? in doctest examples (diff) | |
| download | kernel-bfb9e46b5bff33ebaac49cceb27256caceddeee5.tar.gz kernel-bfb9e46b5bff33ebaac49cceb27256caceddeee5.zip | |
rust: macros: remove `module!`'s deprecated `author` key
Commit 38559da6afb2 ("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 <[email protected]>
Acked-by: Andreas Hindborg <[email protected]>
Reviewed-by: Benno Lossin <[email protected]>
Acked-by: Danilo Krummrich <[email protected]>
Acked-by: Viresh Kumar <[email protected]>
Acked-by: Greg Kroah-Hartman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
[ Reworded slightly. - Miguel ]
Signed-off-by: Miguel Ojeda <[email protected]>
Diffstat (limited to 'samples/rust/rust_driver_auxiliary.rs')
| -rw-r--r-- | samples/rust/rust_driver_auxiliary.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/rust/rust_driver_auxiliary.rs b/samples/rust/rust_driver_auxiliary.rs index 3e15e6d002bb..abf3d55ed249 100644 --- a/samples/rust/rust_driver_auxiliary.rs +++ b/samples/rust/rust_driver_auxiliary.rs @@ -114,7 +114,7 @@ impl InPlaceModule for SampleModule { module! { type: SampleModule, name: "rust_driver_auxiliary", - author: "Danilo Krummrich", + authors: ["Danilo Krummrich"], description: "Rust auxiliary driver", license: "GPL v2", } |
