staging: wilc1000: Include KERN_ facility level for printk()

This patch includes KERN_ facility level for printk(). KERN_INFO is
justified here as the messages here are informational.

Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Janani Ravichandran 2016-02-13 23:19:10 -05:00 committed by Greg Kroah-Hartman
parent 4375cad941
commit f7b7f87de7

View file

@ -69,9 +69,9 @@ static ssize_t wilc_debug_level_write(struct file *filp, const char __user *buf,
atomic_set(&WILC_DEBUG_LEVEL, (int)flag);
if (flag == 0)
printk("Debug-level disabled\n");
printk(KERN_INFO "Debug-level disabled\n");
else
printk("Debug-level enabled\n");
printk(KERN_INFO "Debug-level enabled\n");
return count;
}