diff options
author | Ben Greear <greearb@candelatech.com> | 2013-04-01 22:37:29 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-04-08 19:28:37 (GMT) |
commit | fedf1d809cb05662d57c447dbb1559f3f563bf4f (patch) | |
tree | c357cd1a91f3a5e89cb4fbbfe926500eb246423b /drivers/net | |
parent | 9908b07465556d4c96685d7f1ead0e17b01c662d (diff) | |
download | linux-fedf1d809cb05662d57c447dbb1559f3f563bf4f.tar.xz |
ath: Let user know which keycache method is complaining.
Should make the warning messages more useful.
Signed-off-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ath/key.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/key.c b/drivers/net/wireless/ath/key.c index 5c54aa4..1816b4e 100644 --- a/drivers/net/wireless/ath/key.c +++ b/drivers/net/wireless/ath/key.c @@ -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; } @@ -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; } @@ -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; } |