diff options
author | Christopher Díaz Riveros <chrisadr@gentoo.org> | 2018-01-17 16:03:00 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-01-22 14:03:28 +0100 |
commit | 9cb05f93d618ff414a9d0e982c0c93f3daba7463 (patch) | |
tree | 0cdabfea4360d1eaa8bfdf7f286805a42267e6d8 /net/mac80211 | |
parent | 6e3d6ca16319d461206d0e348be3dab8c165f7f8 (diff) | |
download | linux-9cb05f93d618ff414a9d0e982c0c93f3daba7463.tar.bz2 |
debugfs_sta: Remove unneeded semicolons
Trivial fix removes unneeded semicolons after switch blocks.
Signed-off-by: Christopher Díaz Riveros <chrisadr@gentoo.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/debugfs_sta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/debugfs_sta.c b/net/mac80211/debugfs_sta.c index b15412c21ac9..444ea8d127fe 100644 --- a/net/mac80211/debugfs_sta.c +++ b/net/mac80211/debugfs_sta.c @@ -420,7 +420,7 @@ static ssize_t sta_vht_capa_read(struct file *file, char __user *userbuf, default: p += scnprintf(p, sizeof(buf) + buf - p, "\t\tMAX-MPDU-UNKNOWN\n"); - }; + } switch (vhtc->cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK) { case 0: p += scnprintf(p, sizeof(buf) + buf - p, @@ -438,7 +438,7 @@ static ssize_t sta_vht_capa_read(struct file *file, char __user *userbuf, p += scnprintf(p, sizeof(buf) + buf - p, "\t\tUNKNOWN-MHZ: 0x%x\n", (vhtc->cap >> 2) & 0x3); - }; + } PFLAG(RXLDPC, "RXLDPC"); PFLAG(SHORT_GI_80, "SHORT-GI-80"); PFLAG(SHORT_GI_160, "SHORT-GI-160"); |