From: Gargi Sharma Date: Fri, 16 Sep 2016 02:46:05 +0000 (+0530) Subject: staging: wlan-ng: add spaces around >> X-Git-Tag: v4.9-rc1~119^2~546 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=061eab5c6396894de5a01bcaf5ab7bae51232ba7;p=platform%2Fkernel%2Flinux-exynos.git staging: wlan-ng: add spaces around >> add spaces around >> to fix the checkpatch issue, spaces preferred around that '>>'. Signed-off-by: Gargi Sharma Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h index e466883..d4b1dbf 100644 --- a/drivers/staging/wlan-ng/hfa384x.h +++ b/drivers/staging/wlan-ng/hfa384x.h @@ -121,7 +121,7 @@ /* 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))