diff options
author | Joe Perches <joe@perches.com> | 2010-01-08 22:33:38 -0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-01-12 14:20:55 -0500 |
commit | 5e124bd5e00fcf54df555b368c2dafe6886f1df2 (patch) | |
tree | e6349981733e53bb0624dc0e6c63bb3015cf1cf4 /net/mac80211/mlme.c | |
parent | 28f63a4bb744ea81030219aba2337fddb10b380b (diff) | |
download | linux-3.10-5e124bd5e00fcf54df555b368c2dafe6886f1df2.tar.gz linux-3.10-5e124bd5e00fcf54df555b368c2dafe6886f1df2.tar.bz2 linux-3.10-5e124bd5e00fcf54df555b368c2dafe6886f1df2.zip |
net/mac80211/mlme.c: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 8045fd63616..86f025bc945 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -1783,7 +1783,7 @@ int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata, if (!wk) return -ENOMEM; - memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);; + memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN); if (req->ie && req->ie_len) { memcpy(wk->ie, req->ie, req->ie_len); |