Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 369165
b: refs/heads/master
c: a2ffc56
h: refs/heads/master
i:
  369163: d496df1
v: v3
  • Loading branch information
Arend van Spriel authored and John W. Linville committed Apr 8, 2013
1 parent b69a054 commit 09edb9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: 2716fd7d455e277ad8676df794fe65bd1e1ba442
refs/heads/master: a2ffc5668e2742db7bae48ad6098e45f8d3ea19e
4 changes: 3 additions & 1 deletion trunk/drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1181,13 +1181,15 @@ static int brcmf_fws_fifocreditback_indicate(struct brcmf_fws_info *fws,

static int brcmf_fws_txstatus_indicate(struct brcmf_fws_info *fws, u8 *data)
{
__le32 status_le;
u32 status;
u32 hslot;
u32 genbit;
u8 flags;

fws->stats.txs_indicate++;
status = le32_to_cpu(*(__le32 *)data);
memcpy(&status_le, data, sizeof(status_le));
status = le32_to_cpu(status_le);
flags = brcmf_txstatus_get_field(status, FLAGS);
hslot = brcmf_txstatus_get_field(status, HSLOT);
genbit = brcmf_txstatus_get_field(status, GENERATION);
Expand Down

0 comments on commit 09edb9d

Please sign in to comment.