Commit d6400c29 authored by Joe Perches's avatar Joe Perches Committed by John W. Linville

brcmfmac: Convert printk(KERN_DEBUG to pr_debug

Allow dynamic debugging.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 8ae74654
...@@ -39,13 +39,13 @@ do { \ ...@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment