From: Sean Wang <sean.wang@xxxxxxxxxxxx> start/stop ap funciton definition is changed since 'ae7ba17b49b6 ("wifi: mac80211: pass the link id in start/stop ap")' was added, so we adapt into it to fix -Werror=incompatible-pointer-types build error. Signed-off-by: Sean Wang <sean.wang@xxxxxxxxxxxx> --- drivers/net/wireless/mediatek/mt76/mt7921/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/mediatek/mt76/mt7921/main.c b/drivers/net/wireless/mediatek/mt76/mt7921/main.c index a9e0e00b764c..4be488da0117 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7921/main.c +++ b/drivers/net/wireless/mediatek/mt76/mt7921/main.c @@ -1505,8 +1505,8 @@ mt7921_channel_switch_beacon(struct ieee80211_hw *hw, } static int -mt7921_start_ap(struct ieee80211_hw *hw, - struct ieee80211_vif *vif) +mt7921_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, + unsigned int link_id) { struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv; struct mt7921_phy *phy = mt7921_hw_phy(hw); @@ -1527,8 +1527,8 @@ mt7921_start_ap(struct ieee80211_hw *hw, } static void -mt7921_stop_ap(struct ieee80211_hw *hw, - struct ieee80211_vif *vif) +mt7921_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, + unsigned int link_id) { struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv; struct mt7921_phy *phy = mt7921_hw_phy(hw); -- 2.25.1