diff options
Diffstat (limited to 'meta-skeleton/recipes-kernel/hello-mod/files/hello.c')
-rw-r--r-- | meta-skeleton/recipes-kernel/hello-mod/files/hello.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-skeleton/recipes-kernel/hello-mod/files/hello.c b/meta-skeleton/recipes-kernel/hello-mod/files/hello.c index b68b0c348e..6b73a79524 100644 --- a/meta-skeleton/recipes-kernel/hello-mod/files/hello.c +++ b/meta-skeleton/recipes-kernel/hello-mod/files/hello.c | |||
@@ -21,13 +21,13 @@ | |||
21 | 21 | ||
22 | static int __init hello_init(void) | 22 | static int __init hello_init(void) |
23 | { | 23 | { |
24 | printk("Hello World!\n"); | 24 | pr_info("Hello World!\n"); |
25 | return 0; | 25 | return 0; |
26 | } | 26 | } |
27 | 27 | ||
28 | static void __exit hello_exit(void) | 28 | static void __exit hello_exit(void) |
29 | { | 29 | { |
30 | printk("Goodbye Cruel World!\n"); | 30 | pr_info("Goodbye Cruel World!\n"); |
31 | } | 31 | } |
32 | 32 | ||
33 | module_init(hello_init); | 33 | module_init(hello_init); |