Replace custom hex dumping function with print_hex_dump_bytes()
to make checkpatch.pl happy

Signed-off-by: Mateusz Kulikowski <mateusz.kulikow...@gmail.com>
---
 drivers/staging/rtl8192e/rtllib.h | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/rtl8192e/rtllib.h 
b/drivers/staging/rtl8192e/rtllib.h
index 5363b6f..c748777 100644
--- a/drivers/staging/rtl8192e/rtllib.h
+++ b/drivers/staging/rtl8192e/rtllib.h
@@ -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)
 
-- 
1.8.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to