]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wilc1000: remove function pointer io_init
authorGlen Lee <glen.lee@atmel.com>
Fri, 6 Nov 2015 09:40:17 +0000 (18:40 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch removes function pointer io_init of wilc_wlan_io_func_t and it's
related codes, and call the function linux_spi_init directly.

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

index 3aa636aba66fbe05af00e161d322b7e041108d89..119f55d8b756d85b61be3fd36fc96b32ef9cde46 100644 (file)
@@ -892,11 +892,9 @@ void linux_to_wlan(wilc_wlan_inp_t *nwi, struct wilc *nic)
 
 #ifdef WILC_SDIO
        nwi->io_func.io_type = HIF_SDIO;
-       nwi->io_func.io_init = linux_sdio_init;
        nwi->io_func.io_deinit = linux_sdio_deinit;
 #else
        nwi->io_func.io_type = HIF_SPI;
-       nwi->io_func.io_init = linux_spi_init;
        nwi->io_func.io_deinit = linux_spi_deinit;
 #endif
 }
index bda7b10a52a0ae583d2313d750838fa2585af905..30b1744f98f1da2a87fa19356e559eb966262ae0 100644 (file)
@@ -966,11 +966,9 @@ static int wilc_spi_init(wilc_wlan_inp_t *inp, wilc_debug_func func)
 
        g_spi.dPrint = func;
        g_spi.os_context = inp->os_context.os_private;
-       if (inp->io_func.io_init) {
-               if (!inp->io_func.io_init(g_spi.os_context)) {
-                       PRINT_ER("[wilc spi]: Failed io init bus...\n");
-                       return 0;
-               }
+       if (!linux_spi_init(g_spi.os_context)) {
+               PRINT_ER("[wilc spi]: Failed io init bus...\n");
+               return 0;
        } else {
                return 0;
        }
index 0f15795c95ec9fd6de02100174f4825de625370a..d0b5bc3161e086609d6a182ad09c298d6e1aedd6 100644 (file)
@@ -74,7 +74,6 @@ typedef struct {
 
 typedef struct {
        int io_type;
-       int (*io_init)(void *);
        void (*io_deinit)(void *);
 } wilc_wlan_io_func_t;