aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/bcm
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2013-01-04 23:35:06 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 10:57:51 -0800
commit79a469136cbd6bc7a91f8e3b785aa793e39a2a75 (patch)
tree8508a03f5c10caf1744e6c97de04e1c61fa86ea6 /drivers/staging/bcm
parent34bb72b67496ebb9510720a1b9d7663eed1e4116 (diff)
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>
Diffstat (limited to 'drivers/staging/bcm')
-rw-r--r--drivers/staging/bcm/Debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/bcm/Debug.h b/drivers/staging/bcm/Debug.h
index 7a66219a8f4..4b620d9ba08 100644
--- a/drivers/staging/bcm/Debug.h
+++ b/drivers/staging/bcm/Debug.h
@@ -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. */