Skip to content

Commit

Permalink
Fixed problem: security mode of STA can't work.
Browse files Browse the repository at this point in the history
Signed-off-by: David Lin <dlin@marvell.com>
  • Loading branch information
yuhhaurlin committed Jun 6, 2017
1 parent 29e8808 commit c0de845
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hif/fwcmd.c
Expand Up @@ -2256,7 +2256,8 @@ int mwl_fwcmd_update_encryption_enable(struct ieee80211_hw *hw,
return -EIO;
}

if (vif->type == NL80211_IFTYPE_STATION) {
if ((vif->type == NL80211_IFTYPE_STATION) &&
(priv->chip_type != MWL8964)) {
if (ether_addr_equal(mwl_vif->bssid, addr))
ether_addr_copy(pcmd->mac_addr, mwl_vif->sta_mac);
else
Expand Down

3 comments on commit c0de845

@BrainSlayer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i just want to report that station mode is working now. i tested just standard wpa2 psk. any comments about usual wds ap / wds sta support?

@yuhhaurlin
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No. WDS will be done later. Our QA had tested 160 MHz setting for AP and STA with our own 8964. It works. If there is no problem with other vendor chip, I think you can close related issue.

@BrainSlayer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but there is. i checked a netgear r7800 in vht160 (QCA9984). other QCA9984 clients are able to connect with vht160. the 8964 only connects with vht80

Please sign in to comment.