Skip to content

Commit

Permalink
Staging: bcm: Fix error: "Macros with complex values should be enclos…
Browse files Browse the repository at this point in the history
…ed 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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 34bb72b commit 79a4691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/bcm/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 79a4691

Please sign in to comment.