pr_info everywhere

This commit is contained in:
Ciro Santilli
2017-07-14 11:30:16 +01:00
parent 1918c4fdfe
commit 0f1fbaf026
8 changed files with 11 additions and 11 deletions

View File

@@ -17,11 +17,11 @@ MODULE_LICENSE("GPL");
int init_module(void)
{
printk(KERN_INFO "init_module\n");
pr_info("init_module\n");
return 0;
}
void cleanup_module(void)
{
printk(KERN_INFO "cleanup_module\n");
pr_info("cleanup_module\n");
}