Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 278214
b: refs/heads/master
c: 4713e96
h: refs/heads/master
v: v3
  • Loading branch information
John W. Linville committed Nov 21, 2011
1 parent a0884f7 commit 80fc358
Show file tree
Hide file tree
Showing 52 changed files with 4,646 additions and 2,429 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: 9b5e2f463ac6f53789bd5ce43d2bb4b4c01e8607
refs/heads/master: 4713e962c5d98901890c446843ae4e0a9d37b7b3
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ath/ath6kl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

obj-$(CONFIG_ATH6KL) := ath6kl.o
ath6kl-y += debug.o
ath6kl-y += htc_hif.o
ath6kl-y += hif.o
ath6kl-y += htc.o
ath6kl-y += bmi.o
ath6kl-y += cfg80211.o
Expand Down
7 changes: 5 additions & 2 deletions trunk/drivers/net/wireless/ath/ath6kl/bmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ int ath6kl_bmi_done(struct ath6kl *ar)
return ret;
}

ath6kl_bmi_cleanup(ar);

return 0;
}

Expand Down Expand Up @@ -672,6 +670,11 @@ int ath6kl_bmi_fast_download(struct ath6kl *ar, u32 addr, u8 *buf, u32 len)
return ret;
}

void ath6kl_bmi_reset(struct ath6kl *ar)
{
ar->bmi.done_sent = false;
}

int ath6kl_bmi_init(struct ath6kl *ar)
{
ar->bmi.cmd_buf = kzalloc(MAX_BMI_CMDBUF_SZ, GFP_ATOMIC);
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/net/wireless/ath/ath6kl/bmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ struct ath6kl_bmi_target_info {

int ath6kl_bmi_init(struct ath6kl *ar);
void ath6kl_bmi_cleanup(struct ath6kl *ar);
void ath6kl_bmi_reset(struct ath6kl *ar);

int ath6kl_bmi_done(struct ath6kl *ar);
int ath6kl_bmi_get_target_info(struct ath6kl *ar,
struct ath6kl_bmi_target_info *targ_info);
Expand Down
Loading

0 comments on commit 80fc358

Please sign in to comment.