Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 315338
b: refs/heads/master
c: a5fed0c
h: refs/heads/master
v: v3
  • Loading branch information
Hauke Mehrtens authored and John W. Linville committed Jul 10, 2012
1 parent b18e163 commit 6d64b0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 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: 1ef1a57de7078edc2504d156be606249cc32c199
refs/heads/master: a5fed0c1e48ca6c153e33e63aef406b4ef97cd95
11 changes: 5 additions & 6 deletions trunk/drivers/net/wireless/brcm80211/brcmsmac/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4218,9 +4218,8 @@ static void brcms_c_radio_timer(void *arg)
}

/* common low-level watchdog code */
static void brcms_b_watchdog(void *arg)
static void brcms_b_watchdog(struct brcms_c_info *wlc)
{
struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
struct brcms_hardware *wlc_hw = wlc->hw;

BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
Expand All @@ -4241,10 +4240,8 @@ static void brcms_b_watchdog(void *arg)
}

/* common watchdog code */
static void brcms_c_watchdog(void *arg)
static void brcms_c_watchdog(struct brcms_c_info *wlc)
{
struct brcms_c_info *wlc = (struct brcms_c_info *) arg;

BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);

if (!wlc->pub->up)
Expand Down Expand Up @@ -4284,7 +4281,9 @@ static void brcms_c_watchdog(void *arg)

static void brcms_c_watchdog_by_timer(void *arg)
{
brcms_c_watchdog(arg);
struct brcms_c_info *wlc = (struct brcms_c_info *) arg;

brcms_c_watchdog(wlc);
}

static bool brcms_c_timers_init(struct brcms_c_info *wlc, int unit)
Expand Down

0 comments on commit 6d64b0e

Please sign in to comment.