Commit 74f161f6 authored by Andreea-Cristina Bernat's avatar Andreea-Cristina Bernat Committed by Peter P Waskiewicz Jr
Browse files

/staging/vt6656: Delete extra paranthesis from macro definition



This patch solves the error of checkpatch.pl by deleting the extra paranthesis.

Signed-off-by: default avatarAndreea-Cristina Bernat <bernat.ada@gmail.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent 72dbeaf5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -151,7 +151,7 @@
#ifdef __BIG_ENDIAN
#ifdef __BIG_ENDIAN


/* GET & SET Frame Control bit */
/* GET & SET Frame Control bit */
#define WLAN_GET_FC_PRVER(n)    ((((u16)(n) >> 8) & (BIT0 | BIT1))
#define WLAN_GET_FC_PRVER(n)    (((u16)(n) >> 8) & (BIT0 | BIT1))
#define WLAN_GET_FC_FTYPE(n)    ((((u16)(n) >> 8) & (BIT2 | BIT3)) >> 2)
#define WLAN_GET_FC_FTYPE(n)    ((((u16)(n) >> 8) & (BIT2 | BIT3)) >> 2)
#define WLAN_GET_FC_FSTYPE(n)   ((((u16)(n) >> 8) \
#define WLAN_GET_FC_FSTYPE(n)   ((((u16)(n) >> 8) \
				  & (BIT4|BIT5|BIT6|BIT7)) >> 4)
				  & (BIT4|BIT5|BIT6|BIT7)) >> 4)