]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
wl1251: remove trailing semicolon in macro definition
authorTom Rix <trix@redhat.com>
Fri, 27 Nov 2020 18:08:35 +0000 (10:08 -0800)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 2 Dec 2020 19:39:20 +0000 (21:39 +0200)
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
drivers/net/wireless/ti/wl1251/debugfs.c

index d48746e640cca207278d91c6f078035cf63239a5..a1b778a0fda0022acde4eb8b427e7df78281eca2 100644 (file)
@@ -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 {                                                            \