1
0
Fork 0

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: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Kevin McKinney 2013-01-04 23:35:06 -05:00 committed by Greg Kroah-Hartman
parent 34bb72b674
commit 79a469136c
1 changed files with 1 additions and 1 deletions

View File

@ -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 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
/* --- Only for direct printk's; "hidden" to API. */