staging: wilc1000: linux_sdio_init: remove parameter pv

This patch removes function parameter pv which is not used and modify it's
related codes.

Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Glen Lee
2015-11-06 18:40:19 +09:00
committed by Greg Kroah-Hartman
parent 060a8a23f5
commit 4bffadb044
3 changed files with 3 additions and 3 deletions

View File

@@ -214,7 +214,7 @@ static int linux_sdio_get_speed(void)
return local_sdio_func->card->host->ios.clock;
}
int linux_sdio_init(void *pv)
int linux_sdio_init(void)
{
/**

View File

@@ -3,7 +3,7 @@ extern struct sdio_driver wilc_bus;
#include <linux/mmc/sdio_func.h>
int linux_sdio_init(void *);
int linux_sdio_init(void);
void linux_sdio_deinit(void *);
int linux_sdio_cmd52(sdio_cmd52_t *cmd);
int linux_sdio_cmd53(sdio_cmd53_t *cmd);

View File

@@ -562,7 +562,7 @@ 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 (!linux_sdio_init(g_sdio.os_context)) {
if (!linux_sdio_init()) {
g_sdio.dPrint(N_ERR, "[wilc sdio]: Failed io init bus...\n");
return 0;
} else {