net: wireless: rt2x00: Space issue

Removed empty spaces before/after parenthesis

Signed-off-by: Paul McQuade <paulmcquad@gmail.com>
Acked-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Paul Mcquade 2015-10-17 22:06:43 +01:00 committed by Kalle Valo
parent ac2b335e71
commit b2cc2dd8eb
1 changed files with 9 additions and 9 deletions

View File

@ -107,7 +107,7 @@
* amount of bytes needed to move the data. * amount of bytes needed to move the data.
*/ */
#define ALIGN_SIZE(__skb, __header) \ #define ALIGN_SIZE(__skb, __header) \
( ((unsigned long)((__skb)->data + (__header))) & 3 ) (((unsigned long)((__skb)->data + (__header))) & 3)
/* /*
* Constants for extra TX headroom for alignment purposes. * Constants for extra TX headroom for alignment purposes.
@ -128,14 +128,14 @@
#define SLOT_TIME 20 #define SLOT_TIME 20
#define SHORT_SLOT_TIME 9 #define SHORT_SLOT_TIME 9
#define SIFS 10 #define SIFS 10
#define PIFS ( SIFS + SLOT_TIME ) #define PIFS (SIFS + SLOT_TIME)
#define SHORT_PIFS ( SIFS + SHORT_SLOT_TIME ) #define SHORT_PIFS (SIFS + SHORT_SLOT_TIME)
#define DIFS ( PIFS + SLOT_TIME ) #define DIFS (PIFS + SLOT_TIME)
#define SHORT_DIFS ( SHORT_PIFS + SHORT_SLOT_TIME ) #define SHORT_DIFS (SHORT_PIFS + SHORT_SLOT_TIME)
#define EIFS ( SIFS + DIFS + \ #define EIFS (SIFS + DIFS + \
GET_DURATION(IEEE80211_HEADER + ACK_SIZE, 10) ) GET_DURATION(IEEE80211_HEADER + ACK_SIZE, 10))
#define SHORT_EIFS ( SIFS + SHORT_DIFS + \ #define SHORT_EIFS (SIFS + SHORT_DIFS + \
GET_DURATION(IEEE80211_HEADER + ACK_SIZE, 10) ) GET_DURATION(IEEE80211_HEADER + ACK_SIZE, 10))
enum rt2x00_chip_intf { enum rt2x00_chip_intf {
RT2X00_CHIP_INTF_PCI, RT2X00_CHIP_INTF_PCI,