Commit fc6877b8 authored by Tom Rix's avatar Tom Rix Committed by Kalle Valo
Browse files

wl1251: remove trailing semicolon in macro definition



The macro use will already have a semicolon.

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20201127180835.2769297-1-trix@redhat.com
parent a460b0e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {								\