aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorEugene Krasnikov <k.eugene.e@gmail.com>2013-11-08 17:34:39 +0000
committerJohn W. Linville <linville@tuxdriver.com>2013-12-05 14:54:57 -0500
commit684e55f53ec0fda8933f2caeb439e4f7a803002a (patch)
treed7e3cc777c0a1b4fa30b076026fa6c333d242bfc /drivers/net/wireless
parentwcn36xx: enable beacon change using BSS_CHANGED_BEACON (diff)
downloadlinux-dev-684e55f53ec0fda8933f2caeb439e4f7a803002a.tar.xz
linux-dev-684e55f53ec0fda8933f2caeb439e4f7a803002a.zip
wcn36xx: Fix logging macro with unnecessary semicolon
The wcn36xx_err macro should not end in a semicolon as there are 2 consecutive semicolons in the preprocessed output. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Eugene Krasnikov <k.eugene.e@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/ath/wcn36xx/wcn36xx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/wcn36xx/wcn36xx.h b/drivers/net/wireless/ath/wcn36xx/wcn36xx.h
index 58b63833e8e7..8fa5cbace5ab 100644
--- a/drivers/net/wireless/ath/wcn36xx/wcn36xx.h
+++ b/drivers/net/wireless/ath/wcn36xx/wcn36xx.h
@@ -54,7 +54,7 @@ enum wcn36xx_debug_mask {
};
#define wcn36xx_err(fmt, arg...) \
- printk(KERN_ERR pr_fmt("ERROR " fmt), ##arg);
+ printk(KERN_ERR pr_fmt("ERROR " fmt), ##arg)
#define wcn36xx_warn(fmt, arg...) \
printk(KERN_WARNING pr_fmt("WARNING " fmt), ##arg)