Commit e65e8b60 authored by Tom Rix's avatar Tom Rix Committed by Kalle Valo

carl9170: 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/20201127175531.2754461-1-trix@redhat.com
parent 3dbd7fe7
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
#include "cmd.h" #include "cmd.h"
#define ADD(buf, off, max, fmt, args...) \ #define ADD(buf, off, max, fmt, args...) \
off += scnprintf(&buf[off], max - off, fmt, ##args); off += scnprintf(&buf[off], max - off, fmt, ##args)
struct carl9170_debugfs_fops { struct carl9170_debugfs_fops {
...@@ -818,7 +818,7 @@ void carl9170_debugfs_register(struct ar9170 *ar) ...@@ -818,7 +818,7 @@ void carl9170_debugfs_register(struct ar9170 *ar)
#define DEBUGFS_ADD(name) \ #define DEBUGFS_ADD(name) \
debugfs_create_file(#name, carl_debugfs_##name ##_ops.attr, \ debugfs_create_file(#name, carl_debugfs_##name ##_ops.attr, \
ar->debug_dir, ar, \ ar->debug_dir, ar, \
&carl_debugfs_##name ## _ops.fops); &carl_debugfs_##name ## _ops.fops)
DEBUGFS_ADD(usb_tx_anch_urbs); DEBUGFS_ADD(usb_tx_anch_urbs);
DEBUGFS_ADD(usb_rx_pool_urbs); DEBUGFS_ADD(usb_rx_pool_urbs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment