mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 02:12:00 -04:00
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:
committed by
Greg Kroah-Hartman
parent
060a8a23f5
commit
4bffadb044
@@ -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)
|
||||
{
|
||||
|
||||
/**
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user