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

@@ -27,7 +27,7 @@ static struct workqueue_struct *queue;
static void work_func(struct work_struct *work)
{
printk(KERN_INFO "worker\n");
pr_info("worker\n");
}
DECLARE_WORK(work, work_func);