From c73b83935734bf0a9b56183a2535dd0daba221fe Mon Sep 17 00:00:00 2001 From: 0xwille Date: Fri, 24 Jun 2011 13:57:37 +0200 Subject: Commit inicial --- hello/hello-1.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hello/hello-1.c (limited to 'hello/hello-1.c') diff --git a/hello/hello-1.c b/hello/hello-1.c new file mode 100644 index 0000000..aa434a9 --- /dev/null +++ b/hello/hello-1.c @@ -0,0 +1,13 @@ +#include +#include + +int init_module(void) +{ + printk(KERN_INFO "Hola, mundo! 1\n"); + return 0; +} + +void cleanup_module(void) +{ + printk(KERN_INFO "Adiós, mundo! 1\n"); +} -- cgit v1.2.3