Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Mark kernel modules as being authored by everyone #157

Merged
merged 1 commit into from
Sep 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hello-world/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ impl Drop for HelloWorldModule {

linux_kernel_module::kernel_module!(
HelloWorldModule,
author: "Alex Gaynor and Geoffrey Thomas",
author: "Fish in a Barrel Contributors",
description: "An extremely simple kernel module",
license: "GPL"
);
2 changes: 1 addition & 1 deletion tests/chrdev-region-allocation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl linux_kernel_module::KernelModule for ChrdevRegionAllocationTestModule {

linux_kernel_module::kernel_module!(
ChrdevRegionAllocationTestModule,
author: "Alex Gaynor and Geoffrey Thomas",
author: "Fish in a Barrel Contributors",
description: "A module for testing character device region allocation",
license: "GPL"
);
2 changes: 1 addition & 1 deletion tests/chrdev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl linux_kernel_module::KernelModule for ChrdevTestModule {

linux_kernel_module::kernel_module!(
ChrdevTestModule,
author: "Alex Gaynor and Geoffrey Thomas",
author: "Fish in a Barrel Contributors",
description: "A module for testing character devices",
license: "GPL"
);
2 changes: 1 addition & 1 deletion tests/printk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl linux_kernel_module::KernelModule for PrintkTestModule {

linux_kernel_module::kernel_module!(
PrintkTestModule,
author: "Alex Gaynor and Geoffrey Thomas",
author: "Fish in a Barrel Contributors",
description: "A module for testing println!()",
license: "GPL"
);
2 changes: 1 addition & 1 deletion tests/sysctl-get/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl Drop for SysctlGetTestModule {

linux_kernel_module::kernel_module!(
SysctlGetTestModule,
author: "Alex Gaynor and Geoffrey Thomas",
author: "Fish in a Barrel Contributors",
description: "A module for testing sysctls",
license: "GPL"
);
2 changes: 1 addition & 1 deletion tests/sysctl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl linux_kernel_module::KernelModule for SysctlTestModule {

linux_kernel_module::kernel_module!(
SysctlTestModule,
author: "Alex Gaynor and Geoffrey Thomas",
author: "Fish in a Barrel Contributors",
description: "A module for testing sysctls",
license: "GPL"
);