Commit 5b33b605 authored by Xenia Ragiadakou's avatar Xenia Ragiadakou Committed by Greg Kroah-Hartman

staging: rtl8192u: fix space around braces in r819xU_HTType.h

This patch fixes the white space around braces in r819xU_HTType.h according
to the linux kernel coding style.
Signed-off-by: default avatarXenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 889cfe2f
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#define HT_SUPPORTED_MCS_1SS_2SS_BITMAP HT_MCS_1SS_BITMAP|HT_MCS_1SS_2SS_BITMAP #define HT_SUPPORTED_MCS_1SS_2SS_BITMAP HT_MCS_1SS_BITMAP|HT_MCS_1SS_2SS_BITMAP
typedef enum _HT_MCS_RATE{ typedef enum _HT_MCS_RATE {
HT_MCS0 = 0x00000001, HT_MCS0 = 0x00000001,
HT_MCS1 = 0x00000002, HT_MCS1 = 0x00000002,
HT_MCS2 = 0x00000004, HT_MCS2 = 0x00000004,
...@@ -54,28 +54,28 @@ typedef enum _HT_MCS_RATE{ ...@@ -54,28 +54,28 @@ typedef enum _HT_MCS_RATE{
HT_MCS14 = 0x00004000, HT_MCS14 = 0x00004000,
HT_MCS15 = 0x00008000, HT_MCS15 = 0x00008000,
// Do not define MCS32 here although 8190 support MCS32 // Do not define MCS32 here although 8190 support MCS32
}HT_MCS_RATE,*PHT_MCS_RATE; } HT_MCS_RATE,*PHT_MCS_RATE;
// //
// Represent Channel Width in HT Capabilities // Represent Channel Width in HT Capabilities
// //
typedef enum _HT_CHANNEL_WIDTH{ typedef enum _HT_CHANNEL_WIDTH {
HT_CHANNEL_WIDTH_20 = 0, HT_CHANNEL_WIDTH_20 = 0,
HT_CHANNEL_WIDTH_20_40 = 1, HT_CHANNEL_WIDTH_20_40 = 1,
}HT_CHANNEL_WIDTH, *PHT_CHANNEL_WIDTH; } HT_CHANNEL_WIDTH, *PHT_CHANNEL_WIDTH;
// //
// Represent Extension Channel Offset in HT Capabilities // Represent Extension Channel Offset in HT Capabilities
// This is available only in 40Mhz mode. // This is available only in 40Mhz mode.
// //
typedef enum _HT_EXTCHNL_OFFSET{ typedef enum _HT_EXTCHNL_OFFSET {
HT_EXTCHNL_OFFSET_NO_EXT = 0, HT_EXTCHNL_OFFSET_NO_EXT = 0,
HT_EXTCHNL_OFFSET_UPPER = 1, HT_EXTCHNL_OFFSET_UPPER = 1,
HT_EXTCHNL_OFFSET_NO_DEF = 2, HT_EXTCHNL_OFFSET_NO_DEF = 2,
HT_EXTCHNL_OFFSET_LOWER = 3, HT_EXTCHNL_OFFSET_LOWER = 3,
}HT_EXTCHNL_OFFSET, *PHT_EXTCHNL_OFFSET; } HT_EXTCHNL_OFFSET, *PHT_EXTCHNL_OFFSET;
typedef enum _CHNLOP{ typedef enum _CHNLOP {
CHNLOP_NONE = 0, // No Action now CHNLOP_NONE = 0, // No Action now
CHNLOP_SCAN = 1, // Scan in progress CHNLOP_SCAN = 1, // Scan in progress
CHNLOP_SWBW = 2, // Bandwidth switching in progress CHNLOP_SWBW = 2, // Bandwidth switching in progress
...@@ -87,7 +87,7 @@ typedef enum _CHNLOP{ ...@@ -87,7 +87,7 @@ typedef enum _CHNLOP{
((_pHTInfo)->ChnlOp > CHNLOP_NONE) ? TRUE : FALSE ((_pHTInfo)->ChnlOp > CHNLOP_NONE) ? TRUE : FALSE
typedef enum _HT_ACTION{ typedef enum _HT_ACTION {
ACT_RECOMMAND_WIDTH = 0, ACT_RECOMMAND_WIDTH = 0,
ACT_MIMO_PWR_SAVE = 1, ACT_MIMO_PWR_SAVE = 1,
ACT_PSMP = 2, ACT_PSMP = 2,
...@@ -102,14 +102,14 @@ typedef enum _HT_ACTION{ ...@@ -102,14 +102,14 @@ typedef enum _HT_ACTION{
/* 2007/06/07 MH Define sub-carrier mode for 40MHZ. */ /* 2007/06/07 MH Define sub-carrier mode for 40MHZ. */
typedef enum _HT_Bandwidth_40MHZ_Sub_Carrier{ typedef enum _HT_Bandwidth_40MHZ_Sub_Carrier {
SC_MODE_DUPLICATE = 0, SC_MODE_DUPLICATE = 0,
SC_MODE_LOWER = 1, SC_MODE_LOWER = 1,
SC_MODE_UPPER = 2, SC_MODE_UPPER = 2,
SC_MODE_FULL40MHZ = 3, SC_MODE_FULL40MHZ = 3,
}HT_BW40_SC_E; } HT_BW40_SC_E;
typedef struct _HT_CAPABILITY_ELE{ typedef struct _HT_CAPABILITY_ELE {
//HT capability info //HT capability info
u8 AdvCoding:1; u8 AdvCoding:1;
...@@ -145,14 +145,14 @@ typedef struct _HT_CAPABILITY_ELE{ ...@@ -145,14 +145,14 @@ typedef struct _HT_CAPABILITY_ELE{
//Antenna Selection Capabilities //Antenna Selection Capabilities
u8 ASCap; u8 ASCap;
}__packed HT_CAPABILITY_ELE, *PHT_CAPABILITY_ELE; } __packed HT_CAPABILITY_ELE, *PHT_CAPABILITY_ELE;
//------------------------------------------------------------ //------------------------------------------------------------
// The HT Information element is present in beacons // The HT Information element is present in beacons
// Only AP is required to include this element // Only AP is required to include this element
//------------------------------------------------------------ //------------------------------------------------------------
typedef struct _HT_INFORMATION_ELE{ typedef struct _HT_INFORMATION_ELE {
u8 ControlChl; u8 ControlChl;
u8 ExtChlOffset:2; u8 ExtChlOffset:2;
...@@ -177,28 +177,28 @@ typedef struct _HT_INFORMATION_ELE{ ...@@ -177,28 +177,28 @@ typedef struct _HT_INFORMATION_ELE{
u8 Rsvd4:4; u8 Rsvd4:4;
u8 BasicMSC[16]; u8 BasicMSC[16];
}__packed HT_INFORMATION_ELE, *PHT_INFORMATION_ELE; } __packed HT_INFORMATION_ELE, *PHT_INFORMATION_ELE;
// //
// MIMO Power Save control field. // MIMO Power Save control field.
// This is appear in MIMO Power Save Action Frame // This is appear in MIMO Power Save Action Frame
// //
typedef struct _MIMOPS_CTRL{ typedef struct _MIMOPS_CTRL {
u8 MimoPsEnable:1; u8 MimoPsEnable:1;
u8 MimoPsMode:1; u8 MimoPsMode:1;
u8 Reserved:6; u8 Reserved:6;
} MIMOPS_CTRL, *PMIMOPS_CTRL; } MIMOPS_CTRL, *PMIMOPS_CTRL;
typedef enum _HT_SPEC_VER{ typedef enum _HT_SPEC_VER {
HT_SPEC_VER_IEEE = 0, HT_SPEC_VER_IEEE = 0,
HT_SPEC_VER_EWC = 1, HT_SPEC_VER_EWC = 1,
}HT_SPEC_VER, *PHT_SPEC_VER; } HT_SPEC_VER, *PHT_SPEC_VER;
typedef enum _HT_AGGRE_MODE_E{ typedef enum _HT_AGGRE_MODE_E {
HT_AGG_AUTO = 0, HT_AGG_AUTO = 0,
HT_AGG_FORCE_ENABLE = 1, HT_AGG_FORCE_ENABLE = 1,
HT_AGG_FORCE_DISABLE = 2, HT_AGG_FORCE_DISABLE = 2,
}HT_AGGRE_MODE_E, *PHT_AGGRE_MODE_E; } HT_AGGRE_MODE_E, *PHT_AGGRE_MODE_E;
//------------------------------------------------------------ //------------------------------------------------------------
// The Data structure is used to keep HT related variables when card is // The Data structure is used to keep HT related variables when card is
...@@ -206,7 +206,7 @@ typedef enum _HT_AGGRE_MODE_E{ ...@@ -206,7 +206,7 @@ typedef enum _HT_AGGRE_MODE_E{
// to default value in HTInitializeHTInfo() // to default value in HTInitializeHTInfo()
//------------------------------------------------------------ //------------------------------------------------------------
typedef struct _RT_HIGH_THROUGHPUT{ typedef struct _RT_HIGH_THROUGHPUT {
// DECLARE_RT_OBJECT(_RT_HIGH_THROUGHPUT); // DECLARE_RT_OBJECT(_RT_HIGH_THROUGHPUT);
u8 bEnableHT; u8 bEnableHT;
u8 bCurrentHTSupport; u8 bCurrentHTSupport;
...@@ -308,7 +308,7 @@ typedef struct _RT_HIGH_THROUGHPUT{ ...@@ -308,7 +308,7 @@ typedef struct _RT_HIGH_THROUGHPUT{
// For IOT issue. // For IOT issue.
u32 IOTAction; u32 IOTAction;
}RT_HIGH_THROUGHPUT, *PRT_HIGH_THROUGHPUT; } RT_HIGH_THROUGHPUT, *PRT_HIGH_THROUGHPUT;
//------------------------------------------------------------ //------------------------------------------------------------
...@@ -316,7 +316,7 @@ typedef struct _RT_HIGH_THROUGHPUT{ ...@@ -316,7 +316,7 @@ typedef struct _RT_HIGH_THROUGHPUT{
// when card is configured as "AP mode" // when card is configured as "AP mode"
//------------------------------------------------------------ //------------------------------------------------------------
typedef struct _RT_HTINFO_STA_ENTRY{ typedef struct _RT_HTINFO_STA_ENTRY {
u8 bEnableHT; u8 bEnableHT;
u8 bSupportCck; u8 bSupportCck;
...@@ -335,7 +335,7 @@ typedef struct _RT_HTINFO_STA_ENTRY{ ...@@ -335,7 +335,7 @@ typedef struct _RT_HTINFO_STA_ENTRY{
u8 McsRateSet[16]; u8 McsRateSet[16];
}RT_HTINFO_STA_ENTRY, *PRT_HTINFO_STA_ENTRY; } RT_HTINFO_STA_ENTRY, *PRT_HTINFO_STA_ENTRY;
...@@ -346,7 +346,7 @@ typedef struct _RT_HTINFO_STA_ENTRY{ ...@@ -346,7 +346,7 @@ typedef struct _RT_HTINFO_STA_ENTRY{
// when card is configured as "STA mode" // when card is configured as "STA mode"
//------------------------------------------------------------ //------------------------------------------------------------
typedef struct _BSS_HT{ typedef struct _BSS_HT {
u8 bdSupportHT; u8 bdSupportHT;
...@@ -362,28 +362,28 @@ typedef struct _BSS_HT{ ...@@ -362,28 +362,28 @@ typedef struct _BSS_HT{
u8 bdRT2RTAggregation; u8 bdRT2RTAggregation;
u8 bdRT2RTLongSlotTime; u8 bdRT2RTLongSlotTime;
}BSS_HT, *PBSS_HT; } BSS_HT, *PBSS_HT;
typedef struct _MIMO_RSSI{ typedef struct _MIMO_RSSI {
u32 EnableAntenna; u32 EnableAntenna;
u32 AntennaA; u32 AntennaA;
u32 AntennaB; u32 AntennaB;
u32 AntennaC; u32 AntennaC;
u32 AntennaD; u32 AntennaD;
u32 Average; u32 Average;
}MIMO_RSSI, *PMIMO_RSSI; } MIMO_RSSI, *PMIMO_RSSI;
typedef struct _MIMO_EVM{ typedef struct _MIMO_EVM {
u32 EVM1; u32 EVM1;
u32 EVM2; u32 EVM2;
}MIMO_EVM, *PMIMO_EVM; } MIMO_EVM, *PMIMO_EVM;
typedef struct _FALSE_ALARM_STATISTICS{ typedef struct _FALSE_ALARM_STATISTICS {
u32 Cnt_Parity_Fail; u32 Cnt_Parity_Fail;
u32 Cnt_Rate_Illegal; u32 Cnt_Rate_Illegal;
u32 Cnt_Crc8_fail; u32 Cnt_Crc8_fail;
u32 Cnt_all; u32 Cnt_all;
}FALSE_ALARM_STATISTICS, *PFALSE_ALARM_STATISTICS; } FALSE_ALARM_STATISTICS, *PFALSE_ALARM_STATISTICS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment