staging: wlan-ng: add spaces around >>
authorGargi Sharma <gs051095@gmail.com>
Fri, 16 Sep 2016 02:46:05 +0000 (08:16 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 Sep 2016 08:31:19 +0000 (10:31 +0200)
add spaces around >> to fix the checkpatch issue, spaces preferred
around that '>>'.

Signed-off-by: Gargi Sharma <gs051095@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/hfa384x.h

index e466883..d4b1dbf 100644 (file)
 
 /* Make CMD format offset and page from a 32-bit flat address */
 #define                HFA384x_ADDR_CMD_MKPAGE(f) \
-               ((u16)((((u32)(f)) & HFA384x_ADDR_FLAT_CMD_PAGE_MASK)>>16))
+               ((u16)((((u32)(f)) & HFA384x_ADDR_FLAT_CMD_PAGE_MASK) >> 16))
 #define                HFA384x_ADDR_CMD_MKOFF(f) \
                ((u16)(((u32)(f)) & HFA384x_ADDR_FLAT_CMD_OFF_MASK))