aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/wireless/wl12xx/sdio.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/sdio.c b/drivers/net/wireless/wl12xx/sdio.c
index ed97f9cee3f0..468a50553fac 100644
--- a/drivers/net/wireless/wl12xx/sdio.c
+++ b/drivers/net/wireless/wl12xx/sdio.c
@@ -289,7 +289,8 @@ static int wl1271_suspend(struct device *dev)
289 /* Tell MMC/SDIO core it's OK to power down the card 289 /* Tell MMC/SDIO core it's OK to power down the card
290 * (if it isn't already), but not to remove it completely */ 290 * (if it isn't already), but not to remove it completely */
291 struct sdio_func *func = dev_to_sdio_func(dev); 291 struct sdio_func *func = dev_to_sdio_func(dev);
292 struct wl1271 *wl = sdio_get_drvdata(func); 292 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
293 struct wl1271 *wl = platform_get_drvdata(glue->core);
293 mmc_pm_flag_t sdio_flags; 294 mmc_pm_flag_t sdio_flags;
294 int ret = 0; 295 int ret = 0;
295 296
@@ -324,7 +325,8 @@ out:
324static int wl1271_resume(struct device *dev) 325static int wl1271_resume(struct device *dev)
325{ 326{
326 struct sdio_func *func = dev_to_sdio_func(dev); 327 struct sdio_func *func = dev_to_sdio_func(dev);
327 struct wl1271 *wl = sdio_get_drvdata(func); 328 struct wl12xx_sdio_glue *glue = sdio_get_drvdata(func);
329 struct wl1271 *wl = platform_get_drvdata(glue->core);
328 330
329 dev_dbg(dev, "wl1271 resume\n"); 331 dev_dbg(dev, "wl1271 resume\n");
330 if (wl->wow_enabled) { 332 if (wl->wow_enabled) {