staging: wilc1000: remove wilc_debug_func of hif_init
authorGlen Lee <glen.lee@atmel.com>
Mon, 21 Dec 2015 05:18:14 +0000 (14:18 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Dec 2015 21:20:04 +0000 (13:20 -0800)
This patch removes wilc_debug_func of hif_init and remove it's related
functions as well because it is not used anymore.

Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_sdio.c
drivers/staging/wilc1000/wilc_spi.c
drivers/staging/wilc1000/wilc_wlan.c
drivers/staging/wilc1000/wilc_wlan.h

index dfa3d3a..efa3379 100644 (file)
@@ -512,7 +512,7 @@ static int sdio_sync(struct wilc *wilc)
        return 1;
 }
 
-static int sdio_init(struct wilc *wilc, wilc_debug_func debug_func)
+static int sdio_init(struct wilc *wilc)
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
        sdio_cmd52_t cmd;
index 8060125..478a356 100644 (file)
@@ -734,7 +734,7 @@ static int wilc_spi_sync(struct wilc *wilc)
        return 1;
 }
 
-static int _wilc_spi_init(struct wilc *wilc, wilc_debug_func func)
+static int _wilc_spi_init(struct wilc *wilc)
 {
        struct spi_device *spi = to_spi_device(wilc->dev);
        u32 reg;
index 0427349..32ecc2d 100644 (file)
@@ -1587,7 +1587,7 @@ int wilc_wlan_init(struct net_device *dev)
 
        PRINT_D(INIT_DBG, "Initializing WILC_Wlan ...\n");
 
-       if (!wilc->hif_func->hif_init(wilc, wilc_debug)) {
+       if (!wilc->hif_func->hif_init(wilc)) {
                ret = -EIO;
                goto _fail_;
        }
index 3666453..580e1d6 100644 (file)
@@ -226,7 +226,7 @@ struct rxq_entry_t {
  ********************************************/
 struct wilc;
 struct wilc_hif_func {
-       int (*hif_init)(struct wilc *, wilc_debug_func);
+       int (*hif_init)(struct wilc *);
        int (*hif_deinit)(struct wilc *);
        int (*hif_read_reg)(struct wilc *, u32, u32 *);
        int (*hif_write_reg)(struct wilc *, u32, u32);