summaryrefslogtreecommitdiffstats
path: root/meta-skeleton
diff options
context:
space:
mode:
Diffstat (limited to 'meta-skeleton')
-rw-r--r--meta-skeleton/recipes-kernel/hello-mod/files/hello.c4
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
22static int __init hello_init(void) 22static 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
28static void __exit hello_exit(void) 28static void __exit hello_exit(void)
29{ 29{
30 printk("Goodbye Cruel World!\n"); 30 pr_info("Goodbye Cruel World!\n");
31} 31}
32 32
33module_init(hello_init); 33module_init(hello_init);