Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 369155
b: refs/heads/master
c: fedf1d8
h: refs/heads/master
i:
  369153: debafd0
  369151: c277d6e
v: v3
  • Loading branch information
Ben Greear authored and John W. Linville committed Apr 8, 2013
1 parent 4f63564 commit 06097ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 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: 9908b07465556d4c96685d7f1ead0e17b01c662d
refs/heads/master: fedf1d809cb05662d57c447dbb1559f3f563bf4f
9 changes: 6 additions & 3 deletions trunk/drivers/net/wireless/ath/key.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ bool ath_hw_keyreset(struct ath_common *common, u16 entry)
void *ah = common->ah;

if (entry >= common->keymax) {
ath_err(common, "keycache entry %u out of range\n", entry);
ath_err(common, "keyreset: keycache entry %u out of range\n",
entry);
return false;
}

Expand Down Expand Up @@ -91,7 +92,8 @@ static bool ath_hw_keysetmac(struct ath_common *common,
void *ah = common->ah;

if (entry >= common->keymax) {
ath_err(common, "keycache entry %u out of range\n", entry);
ath_err(common, "keysetmac: keycache entry %u out of range\n",
entry);
return false;
}

Expand Down Expand Up @@ -133,7 +135,8 @@ static bool ath_hw_set_keycache_entry(struct ath_common *common, u16 entry,
u32 keyType;

if (entry >= common->keymax) {
ath_err(common, "keycache entry %u out of range\n", entry);
ath_err(common, "set-entry: keycache entry %u out of range\n",
entry);
return false;
}

Expand Down

0 comments on commit 06097ef

Please sign in to comment.