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

@@ -18,7 +18,7 @@ DECLARE_WORK(work, work_func);
static void work_func(struct work_struct *work)
{
printk(KERN_INFO "%d\n", i);
pr_info("%d\n", i);
i++;
queue_delayed_work(queue, &next_work, HZ);
}