Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 214669
b: refs/heads/master
c: 78381c4
h: refs/heads/master
i:
  214667: 3bbde1b
v: v3
  • Loading branch information
John W. Linville committed Sep 14, 2010
1 parent 672ebfd commit d6d6a04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a2c1e3dad516618cb0fbfb1a62c36d0b0744573a
refs/heads/master: 78381c41776572cb642a485219c5d7651f198fbd
14 changes: 4 additions & 10 deletions trunk/drivers/net/wireless/wl12xx/wl1271_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,40 +159,34 @@ static void wl1271_sdio_raw_write(struct wl1271 *wl, int addr, void *buf,
wl1271_error("sdio write failed (%d)", ret);
}

static int wl1271_sdio_power_on(struct wl1271 *wl)
static void wl1271_sdio_power_on(struct wl1271 *wl)
{
struct sdio_func *func = wl_to_func(wl);

sdio_claim_host(func);
sdio_enable_func(func);
sdio_release_host(func);

return 0;
}

static int wl1271_sdio_power_off(struct wl1271 *wl)
static void wl1271_sdio_power_off(struct wl1271 *wl)
{
struct sdio_func *func = wl_to_func(wl);

sdio_claim_host(func);
sdio_disable_func(func);
sdio_release_host(func);

return 0;
}

static void wl1271_sdio_set_power(struct wl1271 *wl, bool enable)
{
struct sdio_func *func = wl_to_func(wl);

/* Let the SDIO stack handle wlan_enable control, so we
* keep host claimed while wlan is in use to keep wl1271
* alive.
*/
if (enable)
return wl1271_sdio_power_on(wl);
wl1271_sdio_power_on(wl);
else
return wl1271_sdio_power_off(wl);
wl1271_sdio_power_off(wl);

}

Expand Down

0 comments on commit d6d6a04

Please sign in to comment.