Commit 544827f3 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman

staging: wilc1000: remove function pointer sdio_set_default_speed

This patch removes function pointer sdio_set_default_speed of wilc_sdio_t
and call linux_sdio_set_default_speed() directly.
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f15179eb
......@@ -17,7 +17,6 @@
typedef struct {
void *os_context;
u32 block_size;
int (*sdio_set_default_speed)(void);
wilc_debug_func dPrint;
int nint;
#define MAX_NUN_INT_THRPT_ENH2 (5) /* Max num interrupts allowed in registers 0xf7, 0xf8 */
......@@ -572,8 +571,6 @@ static int sdio_init(wilc_wlan_inp_t *inp, wilc_debug_func func)
return 0;
}
g_sdio.sdio_set_default_speed = inp->io_func.u.sdio.sdio_set_default_speed;
/**
* function 0 csa enable
**/
......@@ -681,7 +678,7 @@ static void sdio_set_max_speed(void)
static void sdio_set_default_speed(void)
{
g_sdio.sdio_set_default_speed();
linux_sdio_set_default_speed();
}
static int sdio_read_size(u32 *size)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment