diff options
author | Tom Rix <trix@redhat.com> | 2020-11-27 20:38:42 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-12-11 12:51:55 +0100 |
commit | 84674ef4d69b7c0570bbb63ed5c80cd8297ec87f (patch) | |
tree | 6c2d50481bc7a7999d896394d6d5cf7788a8aaf3 /net/mac80211/debugfs_sta.c | |
parent | nl80211: Fix fall-through warnings for Clang (diff) | |
download | linux-84674ef4d69b7c0570bbb63ed5c80cd8297ec87f.tar.xz linux-84674ef4d69b7c0570bbb63ed5c80cd8297ec87f.zip |
mac80211: remove trailing semicolon in macro definitions
The macro uses should have (and already have) the semicolon.
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201127193842.2876355-1-trix@redhat.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/debugfs_sta.c')
-rw-r--r-- | net/mac80211/debugfs_sta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/debugfs_sta.c b/net/mac80211/debugfs_sta.c index 6a51b8b58f9e..eb4bb79d936a 100644 --- a/net/mac80211/debugfs_sta.c +++ b/net/mac80211/debugfs_sta.c @@ -985,7 +985,7 @@ STA_OPS(he_capa); #define DEBUGFS_ADD(name) \ debugfs_create_file(#name, 0400, \ - sta->debugfs_dir, sta, &sta_ ##name## _ops); + sta->debugfs_dir, sta, &sta_ ##name## _ops) #define DEBUGFS_ADD_COUNTER(name, field) \ debugfs_create_ulong(#name, 0400, sta->debugfs_dir, &sta->field); |