diff options
author | John W. Linville <linville@tuxdriver.com> | 2012-11-21 18:57:56 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-11-21 18:57:56 +0100 |
commit | b3117494772d8f906625905c6e203af745ee3530 (patch) | |
tree | cc8960455f9e1f18d0939fddd0e96f349613f753 /net/mac80211/main.c | |
parent | brcmfmac: include linux/vmalloc.h from usb.c (diff) | |
parent | Merge tag 'nfc-fixes-3.7-1' of git://git.kernel.org/pub/scm/linux/kernel/git/... (diff) | |
download | linux-b3117494772d8f906625905c6e203af745ee3530.tar.xz linux-b3117494772d8f906625905c6e203af745ee3530.zip |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless
Conflicts:
drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c
drivers/net/wireless/iwlwifi/pcie/tx.c
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 70e87600cacc..da2f41610125 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c @@ -925,8 +925,10 @@ int ieee80211_register_hw(struct ieee80211_hw *hw) local->hw.wiphy->cipher_suites, sizeof(u32) * local->hw.wiphy->n_cipher_suites, GFP_KERNEL); - if (!suites) - return -ENOMEM; + if (!suites) { + result = -ENOMEM; + goto fail_wiphy_register; + } for (r = 0; r < local->hw.wiphy->n_cipher_suites; r++) { u32 suite = local->hw.wiphy->cipher_suites[r]; if (suite == WLAN_CIPHER_SUITE_WEP40 || |