Fix a build error when CONFIG_MAC80211_MESH is not enabled: ../drivers/net/wireless/mediatek/mt76/mt7915/init.c:47:2: error: expected expression before '}' token }, { ^
Fixes: af901eb4ab80 ("mt76: mt7915: get rid of dbdc debugfs knob") Signed-off-by: Randy Dunlap <rdun...@infradead.org> Cc: Shayne Chen <shayne.c...@mediatek.com> Cc: Ryder Lee <ryder....@mediatek.com> Cc: Lorenzo Bianconi <lore...@kernel.org> Cc: Felix Fietkau <n...@nbd.name> Cc: linux-wirel...@vger.kernel.org Cc: Kalle Valo <kv...@codeaurora.org> --- drivers/net/wireless/mediatek/mt76/mt7915/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20201218.orig/drivers/net/wireless/mediatek/mt76/mt7915/init.c +++ linux-next-20201218/drivers/net/wireless/mediatek/mt76/mt7915/init.c @@ -40,9 +40,9 @@ static const struct ieee80211_iface_limi .types = BIT(NL80211_IFTYPE_ADHOC) }, { .max = 16, - .types = BIT(NL80211_IFTYPE_AP) | + .types = BIT(NL80211_IFTYPE_AP) #ifdef CONFIG_MAC80211_MESH - BIT(NL80211_IFTYPE_MESH_POINT) + | BIT(NL80211_IFTYPE_MESH_POINT) #endif }, { .max = MT7915_MAX_INTERFACES,