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

@@ -7,8 +7,6 @@ Mostly to check that our build infrastructure can handle more than one module!
#include <linux/module.h>
#include <linux/kernel.h>
MODULE_LICENSE("GPL");
static int myinit(void)
{
pr_info("hello2 init\n");
@@ -22,3 +20,4 @@ static void myexit(void)
module_init(myinit)
module_exit(myexit)
MODULE_LICENSE("GPL");