Skip to content
Open
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
7 changes: 1 addition & 6 deletions Linux/kernel/my_kernel.c
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,11 +7,6 @@
#include <linux/fs.h>
#include <asm/uaccess.h>

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Robert W. Oliver II");
MODULE_DESCRIPTION("A simple example Linux module.");
MODULE_VERSION("0.01");

#define DEVICE_NAME "my_kernel"


Expand DownExpand Up@@ -139,4 +134,4 @@ static void __exit lkm_example_exit(void)


module_init(lkm_example_init);
module_exit(lkm_example_exit);
module_exit(lkm_example_exit);