summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>2022-11-14 21:01:35 +0100
committerJohannes Berg <johannes.berg@intel.com>2022-12-01 13:53:19 +0100
commit4d371d6e3746d84056f150fdaa66c85f65f60124 (patch)
treeaf7e6860c3ca1297e322e95c5cf899bf61b11d7a
parent13e5afd3d773c6fc6ca2b89027befaaaa1ea7293 (diff)
downloadlinux-4d371d6e3746d84056f150fdaa66c85f65f60124.tar.bz2
wifi: cfg80211: Correct example of ieee80211_iface_limit
Correct wrong closing bracket. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20221114200135.GA100176@matrix-ESPRIMO-P710 Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r--include/net/cfg80211.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 11a370e64143..03d4f4deadae 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -4742,7 +4742,7 @@ struct ieee80211_iface_limit {
*
* struct ieee80211_iface_limit limits1[] = {
* { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
- * { .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
+ * { .max = 1, .types = BIT(NL80211_IFTYPE_AP), },
* };
* struct ieee80211_iface_combination combination1 = {
* .limits = limits1,