brcmfmac: Convert printk(KERN_DEBUG to pr_debug
Allow dynamic debugging. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
8ae746543c
commit
d6400c29ab
1 changed files with 4 additions and 4 deletions
|
@ -39,13 +39,13 @@ do { \
|
||||||
if (BRCMF_ERROR_VAL == BRCMF_##level##_VAL) { \
|
if (BRCMF_ERROR_VAL == BRCMF_##level##_VAL) { \
|
||||||
if (brcmf_msg_level & BRCMF_##level##_VAL) { \
|
if (brcmf_msg_level & BRCMF_##level##_VAL) { \
|
||||||
if (net_ratelimit()) \
|
if (net_ratelimit()) \
|
||||||
printk(KERN_DEBUG "%s: " fmt, \
|
pr_debug("%s: " fmt, \
|
||||||
__func__, ##__VA_ARGS__); \
|
__func__, ##__VA_ARGS__); \
|
||||||
} \
|
} \
|
||||||
} else { \
|
} else { \
|
||||||
if (brcmf_msg_level & BRCMF_##level##_VAL) { \
|
if (brcmf_msg_level & BRCMF_##level##_VAL) { \
|
||||||
printk(KERN_DEBUG "%s: " fmt, \
|
pr_debug("%s: " fmt, \
|
||||||
__func__, ##__VA_ARGS__); \
|
__func__, ##__VA_ARGS__); \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
Loading…
Add table
Reference in a new issue