]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: remove function pointer os_debug
authorGlen Lee <glen.lee@atmel.com>
Thu, 24 Sep 2015 09:14:55 +0000 (18:14 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 00:39:58 +0000 (02:39 +0200)
This patch removes os_debug and call linux_wlan_dbg function instead of
os_debug. Delete static from the linux_wlan_dbg.

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
drivers/staging/wilc1000/wilc_wlan_if.h

index 7b76b22e80ce1c7e2a71df806495b12620fd7a7c..d2678a3f89610ca462f0a119ed50bd61ae032e0b 100644 (file)
@@ -376,7 +376,7 @@ static void deinit_irq(linux_wlan_t *nic)
 /*
  *      OS functions
  */
-static void linux_wlan_dbg(u8 *buff)
+void linux_wlan_dbg(u8 *buff)
 {
        PRINT_D(INIT_DBG, "%d\n", *buff);
 }
@@ -1072,7 +1072,6 @@ void linux_to_wlan(wilc_wlan_inp_t *nwi, linux_wlan_t *nic)
        nwi->os_context.rxq_critical_section = (void *)&g_linux_wlan->rxq_cs;
        nwi->os_context.cfg_wait_event = (void *)&g_linux_wlan->cfg_event;
 
-       nwi->os_func.os_debug = linux_wlan_dbg;
        nwi->os_func.os_wait = linux_wlan_lock_timeout;
 
 #ifdef WILC_SDIO
index bda924462fcc3b451fd77b9fa19f2b44b151eb21..47e04c2d9607b3e59200eb73d394492d8ed0e7ef 100644 (file)
@@ -219,5 +219,6 @@ extern struct net_device *WILC_WFI_devs[];
 void frmw_to_linux(u8 *buff, u32 size, u32 pkt_offset);
 void linux_wlan_mac_indicate(int flag);
 void linux_wlan_rx_complete(void);
+void linux_wlan_dbg(u8 *buff);
 
 #endif
index 1ad3d23a63a7619f865a912feecb16e1bc8cfb0d..5d93c7f94106eba21060773c137826acc9e219aa 100644 (file)
@@ -113,8 +113,7 @@ static void wilc_debug(u32 flag, char *fmt, ...)
                vsprintf(buf, fmt, args);
                va_end(args);
 
-               if (g_wlan.os_func.os_debug)
-                       g_wlan.os_func.os_debug(buf);
+               linux_wlan_dbg(buf);
        }
 }
 
index ef0e0e8d1f8fc27a48bb9cdb8c03b18949b90f01..b6fdb8a4b09f13a8487b24f1ab6cd1035c1ceb59 100644 (file)
@@ -75,7 +75,6 @@ typedef struct {
 } sdio_cmd53_t;
 
 typedef struct {
-       void (*os_debug)(u8 *);
        int (*os_wait)(void *, u32);
 } wilc_wlan_os_func_t;