staging: wilc1000: Replace printk() with pr_info().
Fix checkpatch warning: WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(... to printk(KERN_INFO ... Replace printk(KERN_INFO...) by pr_info() for more uniform error reporting. Signed-off-by: Elise Lennion <elise.lennion@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
98b6594844
commit
14e6cc71bc
drivers/staging/wilc1000
|
@ -62,16 +62,16 @@ static ssize_t wilc_debug_level_write(struct file *filp, const char __user *buf,
|
|||
return ret;
|
||||
|
||||
if (flag > DBG_LEVEL_ALL) {
|
||||
printk("%s, value (0x%08x) is out of range, stay previous flag (0x%08x)\n", __func__, flag, atomic_read(&WILC_DEBUG_LEVEL));
|
||||
pr_info("%s, value (0x%08x) is out of range, stay previous flag (0x%08x)\n", __func__, flag, atomic_read(&WILC_DEBUG_LEVEL));
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
atomic_set(&WILC_DEBUG_LEVEL, (int)flag);
|
||||
|
||||
if (flag == 0)
|
||||
printk(KERN_INFO "Debug-level disabled\n");
|
||||
pr_info("Debug-level disabled\n");
|
||||
else
|
||||
printk(KERN_INFO "Debug-level enabled\n");
|
||||
pr_info("Debug-level enabled\n");
|
||||
|
||||
return count;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue