]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: remove function pointer spi_max_speed
authorGlen Lee <glen.lee@atmel.com>
Fri, 6 Nov 2015 09:40:15 +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 spi_max_speed of wilc_spi_t and just call
the function linux_spi_set_max_speed directly.

Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_spi.c

index 789635b8c230000c741eba1648dafece53019c5e..bda7b10a52a0ae583d2313d750838fa2585af905 100644 (file)
@@ -14,7 +14,6 @@
 
 typedef struct {
        void *os_context;
-       int (*spi_max_speed)(void);
        wilc_debug_func dPrint;
        int crc_off;
        int nint;
@@ -975,7 +974,6 @@ static int wilc_spi_init(wilc_wlan_inp_t *inp, wilc_debug_func func)
        } else {
                return 0;
        }
-       g_spi.spi_max_speed = inp->io_func.u.spi.spi_max_speed;
 
        /**
         *      configure protocol
@@ -1025,7 +1023,7 @@ static int wilc_spi_init(wilc_wlan_inp_t *inp, wilc_debug_func func)
 
 static void wilc_spi_max_bus_speed(void)
 {
-       g_spi.spi_max_speed();
+       linux_spi_set_max_speed();
 }
 
 static void wilc_spi_default_bus_speed(void)