diff options
| -rw-r--r-- | tests/projects/linux/driver/hello_makefile/Makefile (renamed from tests/projects/linux/driver/hello/Makefile) | 0 | ||||
| -rw-r--r-- | tests/projects/linux/driver/hello_makefile/src/add.c | 3 | ||||
| -rw-r--r-- | tests/projects/linux/driver/hello_makefile/src/hello.c | 23 |
3 files changed, 26 insertions, 0 deletions
diff --git a/tests/projects/linux/driver/hello/Makefile b/tests/projects/linux/driver/hello_makefile/Makefile index 1d5aa92b4..1d5aa92b4 100644 --- a/tests/projects/linux/driver/hello/Makefile +++ b/tests/projects/linux/driver/hello_makefile/Makefile diff --git a/tests/projects/linux/driver/hello_makefile/src/add.c b/tests/projects/linux/driver/hello_makefile/src/add.c new file mode 100644 index 000000000..59aab4983 --- /dev/null +++ b/tests/projects/linux/driver/hello_makefile/src/add.c @@ -0,0 +1,3 @@ +int add(int a, int b) { + return a + b; +} diff --git a/tests/projects/linux/driver/hello_makefile/src/hello.c b/tests/projects/linux/driver/hello_makefile/src/hello.c new file mode 100644 index 000000000..414a03bb2 --- /dev/null +++ b/tests/projects/linux/driver/hello_makefile/src/hello.c @@ -0,0 +1,23 @@ +#include <linux/init.h> +#include <linux/module.h> + +MODULE_LICENSE("Dual BSD/GPL"); +MODULE_AUTHOR("Ruki"); +MODULE_DESCRIPTION("A simple Hello World Module"); +MODULE_ALIAS("a simplest module"); + +int add(int a, int b); + +int hello_init(void) +{ + printk(KERN_INFO "Hello World: %d\n", add(1, 2)); + return 0; +} + +void hello_exit(void) +{ + printk(KERN_INFO "Goodbye World\n"); +} + +module_init(hello_init); +module_exit(hello_exit); |
