staging: most: add spaces preferred around that '<<'
authorChaehyun Lim <chaehyun.lim@gmail.com>
Thu, 29 Oct 2015 07:44:10 +0000 (16:44 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch adds space around '<<' found by checkpatch.

CHECK: spaces preferred around that '<<' (ctx:VxV)
FILE: drivers/staging/most/hdm-dim2/dim2_reg.h:69:

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/hdm-dim2/dim2_reg.h

index 0795aae05f1cd4a11675ca8fa0250994a1c9f1aa..bcf6a79f6744db6900ab3a65591bb54bcf248f5f 100644 (file)
@@ -66,7 +66,7 @@ struct dim2_regs {
        /* 0xF7 */ u32 ACMR1;
 };
 
-#define DIM2_MASK(n)  (~((~(u32)0)<<(n)))
+#define DIM2_MASK(n)  (~((~(u32)0) << (n)))
 
 enum {
        MLBC0_MLBLK_BIT = 7,
This page took 0.025744 seconds and 5 git commands to generate.