Staging: wlan-ng: fix printk(KERN_DEBUG in p80211wep.c
authorEbru Akagunduz <ebru.akagunduz@gmail.com>
Tue, 8 Oct 2013 15:51:40 +0000 (18:51 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Oct 2013 20:26:13 +0000 (13:26 -0700)
Fix checkpatch.pl issues with prefer netdev_dbg(netdev, .. then
dev_dbg(dev, .. then pr_debug(.. to printk(KERN_DEBUG in p80211wep.c

Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/p80211wep.c

index 77e50a4..c4fabad 100644 (file)
@@ -134,7 +134,7 @@ int wep_change_key(wlandevice_t *wlandev, int keynum, u8 *key, int keylen)
                return -1;
 
 #ifdef WEP_DEBUG
-       printk(KERN_DEBUG "WEP key %d len %d = %*phC\n", keynum, keylen,
+       pr_debug("WEP key %d len %d = %*phC\n", keynum, keylen,
                          8, key);
 #endif
 
@@ -182,7 +182,7 @@ int wep_decrypt(wlandevice_t *wlandev, u8 *buf, u32 len, int key_override,
        keylen += 3;            /* add in IV bytes */
 
 #ifdef WEP_DEBUG
-       printk(KERN_DEBUG "D %d: %*ph (%d %d) %*phC\n", len, 3, key,
+       pr_debug("D %d: %*ph (%d %d) %*phC\n", len, 3, key,
                          keyidx, keylen, 5, key + 3);
 #endif
 
@@ -259,7 +259,7 @@ int wep_encrypt(wlandevice_t *wlandev, u8 *buf, u8 *dst, u32 len, int keynum,
        keylen += 3;            /* add in IV bytes */
 
 #ifdef WEP_DEBUG
-       printk(KERN_DEBUG "E %d (%d/%d %d) %*ph %*phC\n", len,
+       pr_debug("E %d (%d/%d %d) %*ph %*phC\n", len,
                          iv[3], keynum, keylen, 3, key, 5, key + 3);
 #endif