diff --git a/hello-world/src/lib.rs b/hello-world/src/lib.rs index 60f749db..5c6cfe42 100644 --- a/hello-world/src/lib.rs +++ b/hello-world/src/lib.rs @@ -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" ); diff --git a/tests/chrdev-region-allocation/src/lib.rs b/tests/chrdev-region-allocation/src/lib.rs index 704a5004..742de7f0 100644 --- a/tests/chrdev-region-allocation/src/lib.rs +++ b/tests/chrdev-region-allocation/src/lib.rs @@ -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" ); diff --git a/tests/chrdev/src/lib.rs b/tests/chrdev/src/lib.rs index 8426aadb..4397d067 100644 --- a/tests/chrdev/src/lib.rs +++ b/tests/chrdev/src/lib.rs @@ -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" ); diff --git a/tests/printk/src/lib.rs b/tests/printk/src/lib.rs index aa77e641..1548c926 100644 --- a/tests/printk/src/lib.rs +++ b/tests/printk/src/lib.rs @@ -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" ); diff --git a/tests/sysctl-get/src/lib.rs b/tests/sysctl-get/src/lib.rs index bbf5408d..3080bc0d 100644 --- a/tests/sysctl-get/src/lib.rs +++ b/tests/sysctl-get/src/lib.rs @@ -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" ); diff --git a/tests/sysctl/src/lib.rs b/tests/sysctl/src/lib.rs index 197c5601..598680d2 100644 --- a/tests/sysctl/src/lib.rs +++ b/tests/sysctl/src/lib.rs @@ -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" );