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

Commit b448661

Browse files
authored
Mark kernel modules as being authored by everyone (#157)
1 parent bcde3a3 commit b448661

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

hello-world/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl Drop for HelloWorldModule {
3131

3232
linux_kernel_module::kernel_module!(
3333
HelloWorldModule,
34-
author: "Alex Gaynor and Geoffrey Thomas",
34+
author: "Fish in a Barrel Contributors",
3535
description: "An extremely simple kernel module",
3636
license: "GPL"
3737
);

tests/chrdev-region-allocation/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ impl linux_kernel_module::KernelModule for ChrdevRegionAllocationTestModule {
2121

2222
linux_kernel_module::kernel_module!(
2323
ChrdevRegionAllocationTestModule,
24-
author: "Alex Gaynor and Geoffrey Thomas",
24+
author: "Fish in a Barrel Contributors",
2525
description: "A module for testing character device region allocation",
2626
license: "GPL"
2727
);

tests/chrdev/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ impl linux_kernel_module::KernelModule for ChrdevTestModule {
6868

6969
linux_kernel_module::kernel_module!(
7070
ChrdevTestModule,
71-
author: "Alex Gaynor and Geoffrey Thomas",
71+
author: "Fish in a Barrel Contributors",
7272
description: "A module for testing character devices",
7373
license: "GPL"
7474
);

tests/printk/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ impl linux_kernel_module::KernelModule for PrintkTestModule {
1717

1818
linux_kernel_module::kernel_module!(
1919
PrintkTestModule,
20-
author: "Alex Gaynor and Geoffrey Thomas",
20+
author: "Fish in a Barrel Contributors",
2121
description: "A module for testing println!()",
2222
license: "GPL"
2323
);

tests/sysctl-get/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl Drop for SysctlGetTestModule {
3939

4040
linux_kernel_module::kernel_module!(
4141
SysctlGetTestModule,
42-
author: "Alex Gaynor and Geoffrey Thomas",
42+
author: "Fish in a Barrel Contributors",
4343
description: "A module for testing sysctls",
4444
license: "GPL"
4545
);

tests/sysctl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl linux_kernel_module::KernelModule for SysctlTestModule {
3434

3535
linux_kernel_module::kernel_module!(
3636
SysctlTestModule,
37-
author: "Alex Gaynor and Geoffrey Thomas",
37+
author: "Fish in a Barrel Contributors",
3838
description: "A module for testing sysctls",
3939
license: "GPL"
4040
);

0 commit comments

Comments
 (0)