diff options
author | Gargi Sharma <gs051095@gmail.com> | 2016-09-16 08:16:05 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-16 10:31:19 +0200 |
commit | 061eab5c6396894de5a01bcaf5ab7bae51232ba7 (patch) | |
tree | 7c5f71d5fba509ac3897fe86a5f98b5e27ff5707 /drivers/staging/wlan-ng | |
parent | 65dbeefd023329c1f45769719b0438e19e3cb011 (diff) | |
download | blackbird-op-linux-061eab5c6396894de5a01bcaf5ab7bae51232ba7.tar.gz blackbird-op-linux-061eab5c6396894de5a01bcaf5ab7bae51232ba7.zip |
staging: wlan-ng: add spaces around >>
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>
Diffstat (limited to 'drivers/staging/wlan-ng')
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h index e466883f1600..d4b1dbfb0a3c 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)) |