mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-01 19:34:35 +08:00
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>
This commit is contained in:
parent
b3e3f87160
commit
684e55f53e
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user