staging: rtl8192e: Fix PRINTK_WITHOUT_KERN_LEVEL warnings
Replace custom hex dumping function with print_hex_dump_bytes() to make checkpatch.pl happy Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ff28b74c1c
commit
61dbdf36f2
@ -690,15 +690,9 @@ do { \
|
||||
#define RTLLIB_DEBUG_DATA(level, data, datalen) \
|
||||
do { \
|
||||
if ((rtllib_debug_level & (level)) == (level)) { \
|
||||
int i; \
|
||||
u8 *pdata = (u8 *)data; \
|
||||
printk(KERN_DEBUG "rtllib: %s()\n", __func__); \
|
||||
for (i = 0; i < (int)(datalen); i++) { \
|
||||
printk("%2.2x ", pdata[i]); \
|
||||
if ((i+1)%16 == 0) \
|
||||
printk("\n"); \
|
||||
} \
|
||||
printk("\n"); \
|
||||
print_hex_dump_bytes(KERN_DEBUG, DUMP_PREFIX_NONE, \
|
||||
data, datalen); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user