Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 684e55f5 authored by Eugene Krasnikov's avatar Eugene Krasnikov Committed by John W. Linville
Browse files

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: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarEugene Krasnikov <k.eugene.e@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b3e3f871
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)