aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorYogesh Ashok Powar <yogeshp@marvell.com>2013-01-25 16:20:28 +0530
committerJohn W. Linville <linville@tuxdriver.com>2013-01-30 15:06:51 -0500
commit751930cb1d6da7b7891d8ffe84877cbf21915e0d (patch)
tree05bc3cd8fa3970964febefc1d53a55c5d3475b2b /drivers
parentmwl8k: set mac type to MWL8K_MAC_TYPE_SECONDARY_CLIENT (diff)
downloadlinux-dev-751930cb1d6da7b7891d8ffe84877cbf21915e0d.tar.xz
linux-dev-751930cb1d6da7b7891d8ffe84877cbf21915e0d.zip
mwl8k: Enable hw encryption for STA mode on AP fw
Firmware supports hardware encryption feature for the station interface running on AP firmware. Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com> Signed-off-by: Nishant Sarmukadam <nishants@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/mwl8k.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c
index 4d3f140b4d32..01136b539f00 100644
--- a/drivers/net/wireless/mwl8k.c
+++ b/drivers/net/wireless/mwl8k.c
@@ -4265,8 +4265,9 @@ static int mwl8k_set_key(struct ieee80211_hw *hw,
u8 encr_type;
u8 *addr;
struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif);
+ struct mwl8k_priv *priv = hw->priv;
- if (vif->type == NL80211_IFTYPE_STATION)
+ if (vif->type == NL80211_IFTYPE_STATION && !priv->ap_fw)
return -EOPNOTSUPP;
if (sta == NULL)