]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: remove varialbe sdio_set_default_speed
authorGlen Lee <glen.lee@atmel.com>
Fri, 6 Nov 2015 09:40:06 +0000 (18:40 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch removes sdio_set_default_speed of wilc_wlan_io_func_t which is
not used anymore and also remove struct sdio since it is empty.

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_wlan_if.h

index 9ecf307758524df2ba10a2512f221adb6e5ac256..b37ef4d02943659c793ba2eb61064e6ffe7fea15 100644 (file)
@@ -894,7 +894,6 @@ void linux_to_wlan(wilc_wlan_inp_t *nwi, struct wilc *nic)
        nwi->io_func.io_type = HIF_SDIO;
        nwi->io_func.io_init = linux_sdio_init;
        nwi->io_func.io_deinit = linux_sdio_deinit;
-       nwi->io_func.u.sdio.sdio_set_default_speed = linux_sdio_set_default_speed;
 #else
        nwi->io_func.io_type = HIF_SPI;
        nwi->io_func.io_init = linux_spi_init;
index 2caad2883b193a3091a396663fad83d862892d3a..4568457d98200709ecd055559302a3168b877615 100644 (file)
@@ -77,9 +77,6 @@ typedef struct {
        int (*io_init)(void *);
        void (*io_deinit)(void *);
        union {
-               struct {
-                       int (*sdio_set_default_speed)(void);
-               } sdio;
                struct {
                        int (*spi_max_speed)(void);
                        int (*spi_tx)(u8 *, u32);