mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 02:34:10 -04:00
mwl8k: Choose interface specific calls on vif type
Choose interface specific function calls based on interface type instead of firmware types. 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>
This commit is contained in:
committed by
John W. Linville
parent
d994a1c867
commit
41bf911910
@@ -4984,11 +4984,9 @@ static void
|
||||
mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
||||
struct ieee80211_bss_conf *info, u32 changed)
|
||||
{
|
||||
struct mwl8k_priv *priv = hw->priv;
|
||||
|
||||
if (!priv->ap_fw)
|
||||
if (vif->type == NL80211_IFTYPE_STATION)
|
||||
mwl8k_bss_info_changed_sta(hw, vif, info, changed);
|
||||
else
|
||||
if (vif->type == NL80211_IFTYPE_AP)
|
||||
mwl8k_bss_info_changed_ap(hw, vif, info, changed);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user