staging: wilc1000: remove function pointer rx_complete
authorGlen Lee <glen.lee@atmel.com>
Thu, 24 Sep 2015 09:14:54 +0000 (18:14 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 00:39:57 +0000 (02:39 +0200)
just call the function linux_wlan_rx_complete directly. No need for a pointer
to the functions. Remove rx_complete, wilc_wlan_net_func_t and net_func which
are not used anymore.
Finally remove static from the function linux_wlan_rx_complete.

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 9e099c36255d8d577ef105e3df623a009cbb308f..7b76b22e80ce1c7e2a71df806495b12620fd7a7c 100644 (file)
@@ -555,7 +555,7 @@ static int linux_wlan_txq_task(void *vp)
        return 0;
 }
 
-static void linux_wlan_rx_complete(void)
+void linux_wlan_rx_complete(void)
 {
        PRINT_D(RX_DBG, "RX completed\n");
 }
@@ -1092,9 +1092,6 @@ void linux_to_wlan(wilc_wlan_inp_t *nwi, linux_wlan_t *nic)
        nwi->io_func.u.spi.spi_trx = linux_spi_write_read;
        nwi->io_func.u.spi.spi_max_speed = linux_spi_set_max_speed;
 #endif
-
-       /*for now - to be revised*/
-       nwi->net_func.rx_complete = linux_wlan_rx_complete;
 }
 
 int wlan_initialize_threads(perInterface_wlan_t *nic)
index 5efbaf4d3ed7d54e0f999f8bec78e2fa4e74a9d0..bda924462fcc3b451fd77b9fa19f2b44b151eb21 100644 (file)
@@ -218,5 +218,6 @@ struct WILC_WFI_mon_priv {
 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);
 
 #endif
index a4d6120dca52a4bacf3ec3d127c1e652c7ad01af..1ad3d23a63a7619f865a912feecb16e1bc8cfb0d 100644 (file)
@@ -32,7 +32,6 @@ typedef struct {
         **/
        wilc_wlan_os_func_t os_func;
        wilc_wlan_io_func_t io_func;
-       wilc_wlan_net_func_t net_func;
 
        /**
         *      host interface functions
@@ -1241,8 +1240,7 @@ static void wilc_wlan_handle_rxq(void)
                kfree(rqe);
 
                if (has_packet) {
-                       if (p->net_func.rx_complete)
-                               p->net_func.rx_complete();
+                       linux_wlan_rx_complete();
                }
        } while (1);
 
@@ -1973,7 +1971,6 @@ int wilc_wlan_init(wilc_wlan_inp_t *inp, wilc_wlan_oup_t *oup)
         **/
        memcpy((void *)&g_wlan.os_func, (void *)&inp->os_func, sizeof(wilc_wlan_os_func_t));
        memcpy((void *)&g_wlan.io_func, (void *)&inp->io_func, sizeof(wilc_wlan_io_func_t));
-       memcpy((void *)&g_wlan.net_func, (void *)&inp->net_func, sizeof(wilc_wlan_net_func_t));
        g_wlan.hif_lock = inp->os_context.hif_critical_section;
        g_wlan.txq_lock = inp->os_context.txq_critical_section;
 
index 5b7d732cdb8dcbada1e75051635c4d4d193cf73f..ef0e0e8d1f8fc27a48bb9cdb8c03b18949b90f01 100644 (file)
@@ -99,10 +99,6 @@ typedef struct {
        } u;
 } wilc_wlan_io_func_t;
 
-typedef struct {
-       void (*rx_complete)(void);
-} wilc_wlan_net_func_t;
-
 #define WILC_MAC_INDICATE_STATUS       0x1
 #define WILC_MAC_STATUS_INIT           -1
 #define WILC_MAC_STATUS_READY          0
@@ -135,7 +131,6 @@ typedef struct {
        wilc_wlan_os_context_t os_context;
        wilc_wlan_os_func_t os_func;
        wilc_wlan_io_func_t io_func;
-       wilc_wlan_net_func_t net_func;
 } wilc_wlan_inp_t;
 
 struct tx_complete_data {
This page took 0.029103 seconds and 5 git commands to generate.