diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-07 13:03:57 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-07 13:03:57 -0500 |
commit | c650538f5dbb433f3438e7fcb0090c6d617b4a0e (patch) | |
tree | dbff767b70799a6687f78a8bb723a0062f57ff68 /drivers/net/wireless/ath/ath6kl | |
parent | 51b56e263fb875a86e1f90e41b8c0b8a47c69b47 (diff) |
ath6kl: fix checkpatch error with EPSTAT() macro
ath6kl/debug.c:739: ERROR: Macros with complex values should be
enclosed in parenthesis
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl')
-rwxr-xr-x | drivers/net/wireless/ath/ath6kl/debug.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/debug.c b/drivers/net/wireless/ath/ath6kl/debug.c index 56e1cb170299..4bebf8eb23d3 100755 --- a/drivers/net/wireless/ath/ath6kl/debug.c +++ b/drivers/net/wireless/ath/ath6kl/debug.c | |||
@@ -740,9 +740,13 @@ static ssize_t ath6kl_endpoint_stats_read(struct file *file, | |||
740 | return -ENOMEM; | 740 | return -ENOMEM; |
741 | 741 | ||
742 | #define EPSTAT(name) \ | 742 | #define EPSTAT(name) \ |
743 | len = print_endpoint_stat(target, buf, buf_len, len, \ | 743 | do { \ |
744 | offsetof(struct htc_endpoint_stats, name), \ | 744 | len = print_endpoint_stat(target, buf, buf_len, len, \ |
745 | #name) | 745 | offsetof(struct htc_endpoint_stats, \ |
746 | name), \ | ||
747 | #name); \ | ||
748 | } while (0) | ||
749 | |||
746 | EPSTAT(cred_low_indicate); | 750 | EPSTAT(cred_low_indicate); |
747 | EPSTAT(tx_issued); | 751 | EPSTAT(tx_issued); |
748 | EPSTAT(tx_pkt_bundled); | 752 | EPSTAT(tx_pkt_bundled); |