diff options
author | Tom Rix <trix@redhat.com> | 2020-11-27 11:38:42 -0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-12-11 12:51:55 +0100 |
commit | 84674ef4d69b7c0570bbb63ed5c80cd8297ec87f (patch) | |
tree | 6c2d50481bc7a7999d896394d6d5cf7788a8aaf3 /net/mac80211/debugfs.c | |
parent | d7832c7187c17fa4193503d9d2ee3ad5b59e5e14 (diff) |
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.c')
-rw-r--r-- | net/mac80211/debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/debugfs.c b/net/mac80211/debugfs.c index 90470392fdaa..48f144f107d5 100644 --- a/net/mac80211/debugfs.c +++ b/net/mac80211/debugfs.c @@ -53,7 +53,7 @@ static const struct file_operations name## _ops = { \ DEBUGFS_READONLY_FILE_OPS(name) #define DEBUGFS_ADD(name) \ - debugfs_create_file(#name, 0400, phyd, local, &name## _ops); + debugfs_create_file(#name, 0400, phyd, local, &name## _ops) #define DEBUGFS_ADD_MODE(name, mode) \ debugfs_create_file(#name, mode, phyd, local, &name## _ops); |