ath9k: remove trailing semicolon in macro definition
authorTom Rix <trix@redhat.com>
Mon, 7 Dec 2020 14:16:24 +0000 (16:16 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 7 Dec 2020 16:13:18 +0000 (18:13 +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/20201127175336.2752730-1-trix@redhat.com
drivers/net/wireless/ath/ath9k/common-debug.c
drivers/net/wireless/ath/ath9k/dfs_debug.c

index 53ca4b0..7aefb79 100644 (file)
@@ -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;
index 3251c9a..2a79c2f 100644 (file)
@@ -26,7 +26,7 @@ static struct ath_dfs_pool_stats dfs_pool_stats = { 0 };
 
 #define ATH9K_DFS_STAT(s, p) \
        len += scnprintf(buf + len, size - len, "%28s : %10u\n", s, \
-                        sc->debug.stats.dfs_stats.p);
+                        sc->debug.stats.dfs_stats.p)
 #define ATH9K_DFS_POOL_STAT(s, p) \
        len += scnprintf(buf + len, size - len, "%28s : %10u\n", s, \
                         dfs_pool_stats.p);