Staging: wlan-ng: fix printk(KERN_DEBUG in p80211wep.c
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>
This commit is contained in:
parent
c92cb53d98
commit
6973c6b90a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue