Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 266623
b: refs/heads/master
c: 1b4304d
h: refs/heads/master
i:
  266621: 9a55b81
  266619: c4571c6
  266615: 8907944
  266607: fec89b4
  266591: f18c66c
  266559: 1c64107
  266495: 972db11
v: v3
  • Loading branch information
Kalle Valo committed Sep 27, 2011
1 parent 2fa9a71 commit ec94e2f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00b1edf16960695d820607845797b14e6ed1a26c
refs/heads/master: 1b4304da0adcc31727da3ee7f89dd180f4e65473
1 change: 1 addition & 0 deletions trunk/drivers/net/wireless/ath/ath6kl/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ enum ath6kl_fw_ie_type {
ATH6KL_FW_IE_PATCH_IMAGE = 4,
ATH6KL_FW_IE_RESERVED_RAM_SIZE = 5,
ATH6KL_FW_IE_CAPABILITIES = 6,
ATH6KL_FW_IE_PATCH_ADDR = 7,
};

enum ath6kl_fw_capability {
Expand Down
7 changes: 7 additions & 0 deletions trunk/drivers/net/wireless/ath/ath6kl/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -1000,6 +1000,13 @@ static int ath6kl_fetch_fw_api2(struct ath6kl *ar)
__set_bit(i, ar->fw_capabilities);
}
break;
case ATH6KL_FW_IE_PATCH_ADDR:
if (ie_len != sizeof(*val))
break;

val = (__le32 *) data;
ar->hw.dataset_patch_addr = le32_to_cpup(val);
break;
default:
ath6kl_dbg(ATH6KL_DBG_TRC, "Unknown fw ie: %u\n",
le32_to_cpup(&hdr->id));
Expand Down

0 comments on commit ec94e2f

Please sign in to comment.