Skip to content

Commit

Permalink
net: wireless: rt2x00: Fixed Spacing issues
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Paul Mcquade authored and Kalle Valo committed Feb 7, 2016
1 parent 143e494 commit ac2b335
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions drivers/net/wireless/ralink/rt2x00/rt61pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@
#define PAIRWISE_TA_TABLE_BASE 0x1a00

#define SHARED_KEY_ENTRY(__idx) \
( SHARED_KEY_TABLE_BASE + \
((__idx) * sizeof(struct hw_key_entry)) )
(SHARED_KEY_TABLE_BASE + \
((__idx) * sizeof(struct hw_key_entry)))
#define PAIRWISE_KEY_ENTRY(__idx) \
( PAIRWISE_KEY_TABLE_BASE + \
((__idx) * sizeof(struct hw_key_entry)) )
(PAIRWISE_KEY_TABLE_BASE + \
((__idx) * sizeof(struct hw_key_entry)))
#define PAIRWISE_TA_ENTRY(__idx) \
( PAIRWISE_TA_TABLE_BASE + \
((__idx) * sizeof(struct hw_pairwise_ta_entry)) )
(PAIRWISE_TA_TABLE_BASE + \
((__idx) * sizeof(struct hw_pairwise_ta_entry)))

struct hw_key_entry {
u8 key[16];
Expand Down Expand Up @@ -180,7 +180,7 @@ struct hw_pairwise_ta_entry {
#define HW_BEACON_BASE3 0x2f00

#define HW_BEACON_OFFSET(__index) \
( HW_BEACON_BASE0 + (__index * 0x0100) )
(HW_BEACON_BASE0 + (__index * 0x0100))

/*
* HOST-MCU shared memory.
Expand Down Expand Up @@ -1287,9 +1287,9 @@ struct hw_pairwise_ta_entry {
/*
* DMA descriptor defines.
*/
#define TXD_DESC_SIZE ( 16 * sizeof(__le32) )
#define TXINFO_SIZE ( 6 * sizeof(__le32) )
#define RXD_DESC_SIZE ( 16 * sizeof(__le32) )
#define TXD_DESC_SIZE (16 * sizeof(__le32))
#define TXINFO_SIZE (6 * sizeof(__le32))
#define RXD_DESC_SIZE (16 * sizeof(__le32))

/*
* TX descriptor format for TX, PRIO and Beacon Ring.
Expand Down

0 comments on commit ac2b335

Please sign in to comment.