]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mt76: mt7615: remove cfg80211_chan_def from mt7615_set_channel signature
authorLorenzo Bianconi <lorenzo@kernel.org>
Fri, 21 Jun 2019 17:15:26 +0000 (19:15 +0200)
committerFelix Fietkau <nbd@nbd.name>
Thu, 27 Jun 2019 10:58:13 +0000 (12:58 +0200)
Simplify mt7615_set_channel signature removing cfg80211_chan_def
parameter since it is not actually used

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7615/main.c

index e0824392c019f2dc8cba41c1887aa33ad3d2b5c8..b4d6af812c548099ddc8804e7e07f409c7bd1902 100644 (file)
@@ -130,8 +130,7 @@ static void mt7615_remove_interface(struct ieee80211_hw *hw,
        mutex_unlock(&dev->mt76.mutex);
 }
 
-static int mt7615_set_channel(struct mt7615_dev *dev,
-                             struct cfg80211_chan_def *def)
+static int mt7615_set_channel(struct mt7615_dev *dev)
 {
        int ret;
 
@@ -196,7 +195,7 @@ static int mt7615_config(struct ieee80211_hw *hw, u32 changed)
 
        if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
                ieee80211_stop_queues(hw);
-               ret = mt7615_set_channel(dev, &hw->conf.chandef);
+               ret = mt7615_set_channel(dev);
                ieee80211_wake_queues(hw);
        }