On Mon, Mar 04, 2019 at 11:55:07AM +0100, Lorenzo Bianconi wrote: > > Enable AP mode. For now without multi-vif support, this will require > > more testing and investigation. > > > > Signed-off-by: Stanislaw Gruszka <sgruszka@xxxxxxxxxx> > > --- > > drivers/net/wireless/mediatek/mt76/mt76x02_util.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/net/wireless/mediatek/mt76/mt76x02_util.c b/drivers/net/wireless/mediatek/mt76/mt76x02_util.c > > index 38997076cb03..99c729f6701d 100644 > > --- a/drivers/net/wireless/mediatek/mt76/mt76x02_util.c > > +++ b/drivers/net/wireless/mediatek/mt76/mt76x02_util.c > > @@ -142,6 +142,7 @@ void mt76x02_init_device(struct mt76x02_dev *dev) > > > > wiphy->interface_modes = > > BIT(NL80211_IFTYPE_STATION) | > > + BIT(NL80211_IFTYPE_AP) | > > #ifdef CONFIG_MAC80211_MESH > > BIT(NL80211_IFTYPE_MESH_POINT) | > > I think we need to disable DFS channels for the moment (for mt76x{0,2}u) since > dfs is not supported yet How this should be done ? Is sufficient to check IEEE80211_CHAN_RADAR and mt76_is_usb() on set channel end return -EINVAL error ? Or different way ? Stanislaw