Skip to content

Commit

Permalink
wl1251: remove trailing semicolon in macro definition
Browse files Browse the repository at this point in the history
The macro use will already have a semicolon.

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20201127180835.2769297-1-trix@redhat.com
  • Loading branch information
Tom Rix authored and Kalle Valo committed Dec 2, 2020
1 parent a460b0e commit fc6877b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ti/wl1251/debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static const struct file_operations name## _ops = { \

#define DEBUGFS_ADD(name, parent) \
wl->debugfs.name = debugfs_create_file(#name, 0400, parent, \
wl, &name## _ops); \
wl, &name## _ops) \

#define DEBUGFS_DEL(name) \
do { \
Expand Down

0 comments on commit fc6877b

Please sign in to comment.