diff options
| author | Tom Rix <[email protected]> | 2020-12-07 16:16:24 +0200 |
|---|---|---|
| committer | Kalle Valo <[email protected]> | 2020-12-07 18:13:18 +0200 |
| commit | 5a5b820d18c76b3a8089c44d63bccd1b52f743a5 (patch) | |
| tree | 836513a866bc7e41aa0a5ef2eaee632111a15eab /drivers/net/wireless/ath/ath9k/common-debug.c | |
| parent | 1daf58b23a1ed71c2064ea4d3aa517ac8669cf8d (diff) | |
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.c | 2 |
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; |