staging: wilc1000: call linux_sdio_init instead of io_init
Just call linux_sdio_init instead of io_init function pointer. Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1c2cf24ce5
commit
de11ee8b21
1 changed files with 3 additions and 5 deletions
|
|
@ -562,11 +562,9 @@ static int sdio_init(wilc_wlan_inp_t *inp, wilc_debug_func func)
|
|||
g_sdio.dPrint = func;
|
||||
g_sdio.os_context = inp->os_context.os_private;
|
||||
|
||||
if (inp->io_func.io_init) {
|
||||
if (!inp->io_func.io_init(g_sdio.os_context)) {
|
||||
g_sdio.dPrint(N_ERR, "[wilc sdio]: Failed io init bus...\n");
|
||||
return 0;
|
||||
}
|
||||
if (!linux_sdio_init(g_sdio.os_context)) {
|
||||
g_sdio.dPrint(N_ERR, "[wilc sdio]: Failed io init bus...\n");
|
||||
return 0;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue