summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/core/rtw_debug.c
diff options
context:
space:
mode:
authorElena Oat2014-03-18 19:22:18 +0100
committerGreg Kroah-Hartman2014-03-18 20:22:48 +0100
commit1bdbd758c842d4a4fec21949d3935b460431c4c8 (patch)
tree96ab23c1a8d5785b66bfdacad2470cbea7872c3f /drivers/staging/rtl8188eu/core/rtw_debug.c
parentStaging: rtl8188eu: Fix warning of unchecked sscanf return value. (diff)
downloadkernel-qcow2-linux-1bdbd758c842d4a4fec21949d3935b460431c4c8.tar.gz
kernel-qcow2-linux-1bdbd758c842d4a4fec21949d3935b460431c4c8.tar.xz
kernel-qcow2-linux-1bdbd758c842d4a4fec21949d3935b460431c4c8.zip
Staging: rtl8188eu: Fix warning of printk() should include KERN_ facility level.
This patch fixes the warning of "printk() should include KERN_ facility level" in file rtw_debug.c. Signed-off-by: Elena Oat <oat.elena@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/core/rtw_debug.c')
-rw-r--r--drivers/staging/rtl8188eu/core/rtw_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_debug.c b/drivers/staging/rtl8188eu/core/rtw_debug.c
index 78a7adf61609..949bca139bd4 100644
--- a/drivers/staging/rtl8188eu/core/rtw_debug.c
+++ b/drivers/staging/rtl8188eu/core/rtw_debug.c
@@ -783,7 +783,7 @@ int proc_set_rx_stbc(struct file *file, const char __user *buffer,
if (buffer && !copy_from_user(tmp, buffer, sizeof(tmp))) {
if (pregpriv) {
pregpriv->rx_stbc = mode;
- printk("rx_stbc=%d\n", mode);
+ netdev_info(dev, "rx_stbc=%d\n", mode);
}
}
return count;