Commit 9c800322 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman

staging: wilc1000: change parameter type of hif_init

This patch changes parameter type wilc_wlan_inp_t with struct wilc and
modify it's related code. Pass wilc to the functions as well.
wilc will be used in later patch.
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 64ae414f
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "wilc_wlan_if.h" #include "wilc_wlan_if.h"
#include "wilc_wlan.h" #include "wilc_wlan.h"
#include "linux_wlan_sdio.h" #include "linux_wlan_sdio.h"
#include "wilc_wfi_netdevice.h"
#define WILC_SDIO_BLOCK_SIZE 512 #define WILC_SDIO_BLOCK_SIZE 512
...@@ -550,7 +551,7 @@ static int sdio_sync(void) ...@@ -550,7 +551,7 @@ static int sdio_sync(void)
return 1; return 1;
} }
static int sdio_init(wilc_wlan_inp_t *inp, wilc_debug_func func) static int sdio_init(struct wilc *wilc, wilc_debug_func func)
{ {
sdio_cmd52_t cmd; sdio_cmd52_t cmd;
int loop; int loop;
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "wilc_wlan_if.h" #include "wilc_wlan_if.h"
#include "wilc_wlan.h" #include "wilc_wlan.h"
#include "linux_wlan_spi.h" #include "linux_wlan_spi.h"
#include "wilc_wfi_netdevice.h"
typedef struct { typedef struct {
wilc_debug_func dPrint; wilc_debug_func dPrint;
...@@ -945,7 +946,7 @@ static int wilc_spi_sync(void) ...@@ -945,7 +946,7 @@ static int wilc_spi_sync(void)
return 1; return 1;
} }
static int wilc_spi_init(wilc_wlan_inp_t *inp, wilc_debug_func func) static int wilc_spi_init(struct wilc *wilc, wilc_debug_func func)
{ {
u32 reg; u32 reg;
u32 chipid; u32 chipid;
......
...@@ -1655,6 +1655,10 @@ u32 wilc_get_chipid(u8 update) ...@@ -1655,6 +1655,10 @@ u32 wilc_get_chipid(u8 update)
int wilc_wlan_init(struct net_device *dev, wilc_wlan_inp_t *inp) int wilc_wlan_init(struct net_device *dev, wilc_wlan_inp_t *inp)
{ {
int ret = 0; int ret = 0;
perInterface_wlan_t *nic = netdev_priv(dev);
struct wilc *wilc;
wilc = nic->wilc;
PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n"); PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n");
...@@ -1663,14 +1667,14 @@ int wilc_wlan_init(struct net_device *dev, wilc_wlan_inp_t *inp) ...@@ -1663,14 +1667,14 @@ int wilc_wlan_init(struct net_device *dev, wilc_wlan_inp_t *inp)
sizeof(wilc_wlan_io_func_t)); sizeof(wilc_wlan_io_func_t));
#ifdef WILC_SDIO #ifdef WILC_SDIO
if (!hif_sdio.hif_init(inp, wilc_debug)) { if (!hif_sdio.hif_init(wilc, wilc_debug)) {
ret = -EIO; ret = -EIO;
goto _fail_; goto _fail_;
} }
memcpy((void *)&g_wlan.hif_func, &hif_sdio, memcpy((void *)&g_wlan.hif_func, &hif_sdio,
sizeof(struct wilc_hif_func)); sizeof(struct wilc_hif_func));
#else #else
if (!hif_spi.hif_init(inp, wilc_debug)) { if (!hif_spi.hif_init(wilc, wilc_debug)) {
ret = -EIO; ret = -EIO;
goto _fail_; goto _fail_;
} }
......
...@@ -235,9 +235,9 @@ struct rxq_entry_t { ...@@ -235,9 +235,9 @@ struct rxq_entry_t {
* Host IF Structure * Host IF Structure
* *
********************************************/ ********************************************/
struct wilc;
struct wilc_hif_func { struct wilc_hif_func {
int (*hif_init)(wilc_wlan_inp_t *, wilc_debug_func); int (*hif_init)(struct wilc *, wilc_debug_func);
int (*hif_deinit)(void *); int (*hif_deinit)(void *);
int (*hif_read_reg)(u32, u32 *); int (*hif_read_reg)(u32, u32 *);
int (*hif_write_reg)(u32, u32); int (*hif_write_reg)(u32, u32);
......
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