aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/common-debug.c
diff options
context:
space:
mode:
authorTom Rix <[email protected]>2020-12-07 14:16:24 +0000
committerKalle Valo <[email protected]>2020-12-07 16:13:18 +0000
commit5a5b820d18c76b3a8089c44d63bccd1b52f743a5 (patch)
tree836513a866bc7e41aa0a5ef2eaee632111a15eab /drivers/net/wireless/ath/ath9k/common-debug.c
parentath11k: Ignore resetting peer auth flag in peer assoc cmd (diff)
downloadkernel-5a5b820d18c76b3a8089c44d63bccd1b52f743a5.tar.gz
kernel-5a5b820d18c76b3a8089c44d63bccd1b52f743a5.zip
ath9k: remove trailing semicolon in macro definition
The macro use will already have a semicolon. Signed-off-by: Tom Rix <[email protected]> Signed-off-by: Kalle Valo <[email protected]> Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/common-debug.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/common-debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/common-debug.c b/drivers/net/wireless/ath/ath9k/common-debug.c
index 53ca4b063eb9..7aefb79f6bed 100644
--- a/drivers/net/wireless/ath/ath9k/common-debug.c
+++ b/drivers/net/wireless/ath/ath9k/common-debug.c
@@ -189,7 +189,7 @@ static ssize_t read_file_phy_err(struct file *file, char __user *user_buf,
{
#define PHY_ERR(s, p) \
len += scnprintf(buf + len, size - len, "%22s : %10u\n", s, \
- rxstats->phy_err_stats[p]);
+ rxstats->phy_err_stats[p])
struct ath_rx_stats *rxstats = file->private_data;
char *buf;