提交 79a46913 编写于 作者: K Kevin McKinney 提交者: Greg Kroah-Hartman

Staging: bcm: Fix error: "Macros with complex values should be enclosed in parenthesis" in Debug.h

This patch fixes the following error: "Macros with
complex values should be enclosed in parenthesis"
as reported by checkpatch.pl.
Signed-off-by: NKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 34bb72b6
...@@ -192,7 +192,7 @@ typedef struct _S_BCM_DEBUG_STATE { ...@@ -192,7 +192,7 @@ typedef struct _S_BCM_DEBUG_STATE {
* We'll reuse the debug level parameter to include a bit (the MSB) to indicate whether or not * We'll reuse the debug level parameter to include a bit (the MSB) to indicate whether or not
* we want the function's name printed. * we want the function's name printed.
*/ */
#define DBG_NO_FUNC_PRINT 1 << 31 #define DBG_NO_FUNC_PRINT (1 << 31)
#define DBG_LVL_BITMASK 0xFF #define DBG_LVL_BITMASK 0xFF
/* --- Only for direct printk's; "hidden" to API. */ /* --- Only for direct printk's; "hidden" to API. */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册