Commit 3215bb1a authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman
Browse files

staging: ks7010: use kernel helper to print buffer



No need for an open coded one.

Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 19b08327
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
obj-$(CONFIG_KS7010) += ks7010.o

ccflags-y 	     += -DKS_WLAN_DEBUG=0
ks7010-y	     := michael_mic.o ks_hostif.o ks_wlan_net.o ks_debug.o \
ks7010-y	     := michael_mic.o ks_hostif.o ks_wlan_net.o \
					ks7010_sdio.o ks7010_config.o
+5 −4
Original line number Diff line number Diff line
@@ -441,10 +441,11 @@ static void ks_wlan_hw_rx(void *dev, uint16_t size)

	/* length check */
	if(size > 2046 || size == 0){

		DPRINTK(5,"-INVAILED DATA dump\n");
		print_buffer(&rx_buffer->data[0],32);

#ifdef KS_WLAN_DEBUG
		if (KS_WLAN_DEBUG > 5)
			print_hex_dump_bytes("INVALID DATA dump: ", DUMP_PREFIX_OFFSET,
					     rx_buffer->data, 32);
#endif
		/* rx_status update */
		read_status = READ_STATUS_IDLE;
		retval = ks7010_sdio_write(priv, READ_STATUS, &read_status, sizeof(read_status));

drivers/staging/ks7010/ks_debug.c

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
/*
 *   Driver for KeyStream 11b/g wireless LAN cards.
 *   
 *   ks_debug.c
 *   $Id: ks_debug.c 991 2009-09-14 01:38:58Z sekine $
 *
 *   Copyright (C) 2005-2008 KeyStream Corp.
 *   Copyright (C) 2009 Renesas Technology Corp.
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it undr the terms of the GNU General Public License version 2 as
 *   published by the Free Sotware Foundation.
 */
#include "ks_wlan.h"
#include "ks_debug.h"

void print_buffer(unsigned char *p, int length)
{
#ifdef KS_WLAN_DEBUG
        int i;
#define HEX_OFFSET "\
           +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F"
        printk(HEX_OFFSET);
        for (i=0; i<length; i++) {
                if (i % 16 == 0) printk("\n%04X-%04X:", i, i+15);
                printk(" %02X", *(p+i));
        }
        printk("\n");
#endif
}
+0 −2
Original line number Diff line number Diff line
@@ -25,6 +25,4 @@
#define DPRINTK(n, fmt, args...)
#endif

extern void print_buffer(unsigned char *p, int size);

#endif /* _KS_DEBUG_H */