]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Staging: bcm: Fix error: "Macros with complex values should be enclosed in parenthesi...
authorKevin McKinney <klmckinney1@gmail.com>
Sat, 5 Jan 2013 04:35:06 +0000 (23:35 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2013 18:57:51 +0000 (10:57 -0800)
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>
drivers/staging/bcm/Debug.h

index 7a66219a8f4c0ce8fcc274e89391fdc0285eb016..4b620d9ba08b67753a25ba77c240a826050152e3 100644 (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. */