diff options
| author | Eugene Krasnikov <k.eugene.e@gmail.com> | 2013-11-08 12:34:39 -0500 |
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2013-12-05 14:54:57 -0500 |
| commit | 684e55f53ec0fda8933f2caeb439e4f7a803002a (patch) | |
| tree | d7e3cc777c0a1b4fa30b076026fa6c333d242bfc | |
| parent | b3e3f87160c1654e0478d0cb52e5e9b8790535f2 (diff) | |
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>
| -rw-r--r-- | drivers/net/wireless/ath/wcn36xx/wcn36xx.h | 2 |
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 { | |||
| 54 | }; | 54 | }; |
| 55 | 55 | ||
| 56 | #define wcn36xx_err(fmt, arg...) \ | 56 | #define wcn36xx_err(fmt, arg...) \ |
| 57 | printk(KERN_ERR pr_fmt("ERROR " fmt), ##arg); | 57 | printk(KERN_ERR pr_fmt("ERROR " fmt), ##arg) |
| 58 | 58 | ||
| 59 | #define wcn36xx_warn(fmt, arg...) \ | 59 | #define wcn36xx_warn(fmt, arg...) \ |
| 60 | printk(KERN_WARNING pr_fmt("WARNING " fmt), ##arg) | 60 | printk(KERN_WARNING pr_fmt("WARNING " fmt), ##arg) |
