Move module license to bottom

This commit is contained in:
Ciro Santilli
2017-07-14 13:05:05 +01:00
parent 19f5c51b6b
commit 63d8bbfc89
29 changed files with 29 additions and 56 deletions

View File

@@ -8,8 +8,6 @@ Two threads waiting on a single event.
#include <linux/module.h>
#include <linux/wait.h> /* wait_queue_head_t, wait_event_interruptible, wake_up_interruptible */
MODULE_LICENSE("GPL");
static struct task_struct *kthread_wake;
static struct task_struct *kthread_sleep1;
static struct task_struct *kthread_sleep2;
@@ -75,3 +73,4 @@ void cleanup_module(void)
kthread_stop(kthread_sleep1);
kthread_stop(kthread_wake);
}
MODULE_LICENSE("GPL");