diff options
author | adrian <adrian@FreeBSD.org> | 2015-10-03 21:48:27 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-10-03 21:48:27 +0000 |
commit | 53df85edd101787a9e087c4693aeef60cfe3785d (patch) | |
tree | eb8e8dac359cd62c52a2d28d7bd7d29b1e4de876 /sys/dev/ath | |
parent | b836baf843797a03837992918a03b3edf7f2ac4f (diff) | |
download | FreeBSD-src-53df85edd101787a9e087c4693aeef60cfe3785d.zip FreeBSD-src-53df85edd101787a9e087c4693aeef60cfe3785d.tar.gz |
net80211: drop redundant 3rd parameter from iv_key_set().
The MAC can be fetched from the key struct.
I added the ndis updates to make it compile.
Submitted by: <s3erios@gmail.com>
Differential Revision: https://reviews.freebsd.org/D3657
Diffstat (limited to 'sys/dev/ath')
-rw-r--r-- | sys/dev/ath/if_ath_keycache.c | 3 | ||||
-rw-r--r-- | sys/dev/ath/if_ath_keycache.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ath/if_ath_keycache.c b/sys/dev/ath/if_ath_keycache.c index f81785f..ff1df84 100644 --- a/sys/dev/ath/if_ath_keycache.c +++ b/sys/dev/ath/if_ath_keycache.c @@ -527,8 +527,7 @@ ath_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k) * slot(s) must already have been allocated by ath_key_alloc. */ int -ath_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k, - const u_int8_t mac[IEEE80211_ADDR_LEN]) +ath_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k) { struct ath_softc *sc = vap->iv_ic->ic_softc; diff --git a/sys/dev/ath/if_ath_keycache.h b/sys/dev/ath/if_ath_keycache.h index 0b79e6f..c67e555 100644 --- a/sys/dev/ath/if_ath_keycache.h +++ b/sys/dev/ath/if_ath_keycache.h @@ -35,8 +35,7 @@ extern int ath_key_alloc(struct ieee80211vap *, struct ieee80211_key *, ieee80211_keyix *, ieee80211_keyix *); extern int ath_key_delete(struct ieee80211vap *, const struct ieee80211_key *); -extern int ath_key_set(struct ieee80211vap *, const struct ieee80211_key *, - const u_int8_t mac[IEEE80211_ADDR_LEN]); +extern int ath_key_set(struct ieee80211vap *, const struct ieee80211_key *); extern int ath_keyset(struct ath_softc *sc, struct ieee80211vap *vap, const struct ieee80211_key *k, struct ieee80211_node *bss); |