mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-24 02:35:58 +01:00
Move module license to bottom
This commit is contained in:
@@ -19,8 +19,6 @@ and on QEMU monitor:
|
||||
#include <linux/module.h>
|
||||
#include <linux/seq_file.h> /* single_open, single_release */
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
static volatile u32 i = 0x12345678;
|
||||
|
||||
static struct dentry *debugfs_file;
|
||||
@@ -65,3 +63,4 @@ static void myexit(void)
|
||||
|
||||
module_init(myinit)
|
||||
module_exit(myexit)
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
Reference in New Issue
Block a user