summaryrefslogtreecommitdiff
path: root/poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c')
-rw-r--r--poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c b/poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c
index b68b0c348..6b73a7952 100644
--- a/poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c
+++ b/poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c
@@ -21,13 +21,13 @@
static int __init hello_init(void)
{
- printk("Hello World!\n");
+ pr_info("Hello World!\n");
return 0;
}
static void __exit hello_exit(void)
{
- printk("Goodbye Cruel World!\n");
+ pr_info("Goodbye Cruel World!\n");
}
module_init(hello_init);