2018-11-06 22:55:03

by Lorenzo Bianconi

[permalink] [raw]
Subject: [PATCH] mt76x0: pci: enable VHT rates in IBSS mode

Enable VHT tx rates in ad-hoc mode for mt76x0e driver.

Signed-off-by: Lorenzo Bianconi <[email protected]>
---
This patch is based on top of 'mt76: introduce mt76x02_config_mac_addr_list
routine'
https://patchwork.kernel.org/patch/10671591/
---
drivers/net/wireless/mediatek/mt76/mt76x02_util.c | 2 ++
drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.c | 3 ---
2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/net/wireless/mediatek/mt76/mt76x02_util.c b/drivers/net/wireless/mediatek/mt76/mt76x02_util.c
index a52db63c3c68..48f2f5382b57 100644
--- a/drivers/net/wireless/mediatek/mt76/mt76x02_util.c
+++ b/drivers/net/wireless/mediatek/mt76/mt76x02_util.c
@@ -105,6 +105,8 @@ void mt76x02_init_device(struct mt76x02_dev *dev)
BIT(NL80211_IFTYPE_MESH_POINT) |
#endif
BIT(NL80211_IFTYPE_ADHOC);
+
+ wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_VHT_IBSS);
}

hw->sta_data_size = sizeof(struct mt76x02_sta);
diff --git a/drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.c b/drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.c
index 80b4e11ea28e..843dda261cf8 100644
--- a/drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.c
+++ b/drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.c
@@ -388,8 +388,6 @@ static void mt76x2_led_set_brightness(struct led_classdev *led_cdev,

int mt76x2_register_device(struct mt76x02_dev *dev)
{
- struct ieee80211_hw *hw = mt76_hw(dev);
- struct wiphy *wiphy = hw->wiphy;
int ret;

INIT_DELAYED_WORK(&dev->cal_work, mt76x2_phy_calibrate);
@@ -401,7 +399,6 @@ int mt76x2_register_device(struct mt76x02_dev *dev)
return ret;

mt76x02_config_mac_addr_list(dev);
- wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_VHT_IBSS);

/* init led callbacks */
dev->mt76.led_cdev.brightness_set = mt76x2_led_set_brightness;
--
2.19.1



2018-11-13 19:50:41

by Felix Fietkau

[permalink] [raw]
Subject: Re: [PATCH] mt76x0: pci: enable VHT rates in IBSS mode

On 2018-11-06 23:54, Lorenzo Bianconi wrote:
> Enable VHT tx rates in ad-hoc mode for mt76x0e driver.
>
> Signed-off-by: Lorenzo Bianconi <[email protected]>
Applied, thanks.

- Felix