staging: wilc1000: removes wilc_dbg()
authorLeo Kim <leo.kim@atmel.com>
Mon, 22 Feb 2016 04:41:10 +0000 (13:41 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 22 Feb 2016 19:48:19 +0000 (11:48 -0800)
This patch removes wilc_dbg function because it's not any more.

Signed-off-by: Leo Kim <leo.kim@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 749dfc74c18f98f8700b96cfa6c6842afd248644..912e8eccd3b7923af85332173ce0000d834f2cff 100644 (file)
@@ -224,10 +224,6 @@ static void deinit_irq(struct net_device *dev)
        }
 }
 
-void wilc_dbg(u8 *buff)
-{
-}
-
 int wilc_lock_timeout(struct wilc *nic, void *vp, u32 timeout)
 {
        /* FIXME: replace with mutex_lock or wait_for_completion */
index 3077f5d416c7ea2505d49d41237ecd60eae167ec..786f5fd6618a6c42d2e92a273b0a320d47708cc9 100644 (file)
@@ -228,8 +228,6 @@ int wilc1000_wlan_init(struct net_device *dev, struct wilc_vif *vif);
 
 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_dbg(u8 *buff);
-
 int wilc_lock_timeout(struct wilc *wilc, void *, u32 timeout);
 void wilc_netdev_cleanup(struct wilc *wilc);
 int wilc_netdev_init(struct wilc **wilc, struct device *, int io_type, int gpio,
index e7ae3598074302124f703f713f9cb1cd533eac2a..90b6528dc7c83a4208e2b887beff967b80e1cd32 100644 (file)
@@ -15,8 +15,6 @@ static void wilc_debug(u32 flag, char *fmt, ...)
                va_start(args, fmt);
                vsprintf(buf, fmt, args);
                va_end(args);
-
-               wilc_dbg(buf);
        }
 }
 
This page took 0.02643 seconds and 5 git commands to generate.