staging: wilc1000: wilc_dbg: remove wilc
authorGlen Lee <glen.lee@atmel.com>
Wed, 18 Nov 2015 06:11:36 +0000 (15:11 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Dec 2015 22:30:50 +0000 (14:30 -0800)
This patch remove parameter struct wilc since it is not used and also wilc_dev
will be removed.

Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_wlan.c
drivers/staging/wilc1000/wilc_wfi_netdevice.h
drivers/staging/wilc1000/wilc_wlan.c

index 1457e75..cd471ab 100644 (file)
@@ -245,7 +245,7 @@ static void deinit_irq(struct net_device *dev)
        }
 }
 
-void wilc_dbg(struct wilc *wilc, u8 *buff)
+void wilc_dbg(u8 *buff)
 {
        PRINT_D(INIT_DBG, "%d\n", *buff);
 }
index 6ec6d6a..4c8de8b 100644 (file)
@@ -210,7 +210,7 @@ extern struct net_device *WILC_WFI_devs[];
 void wilc_frmw_to_linux(struct wilc *wilc, u8 *buff, u32 size, u32 pkt_offset);
 void wilc_mac_indicate(struct wilc *wilc, int flag);
 void wilc_rx_complete(struct wilc *wilc);
-void wilc_dbg(struct wilc *, u8 *buff);
+void wilc_dbg(u8 *buff);
 
 int wilc_lock_timeout(struct wilc *wilc, void *, u32 timeout);
 void wilc_netdev_cleanup(struct wilc *wilc);
index a271851..a73e99f 100644 (file)
@@ -51,7 +51,7 @@ static void wilc_debug(u32 flag, char *fmt, ...)
                vsprintf(buf, fmt, args);
                va_end(args);
 
-               wilc_dbg(wilc_dev, buf);
+               wilc_dbg(buf);
        }
 }