Commit 19e918f0 authored by Xenia Ragiadakou's avatar Xenia Ragiadakou Committed by Greg Kroah-Hartman

staging: rtl8192u: fix whitespace in r819xU_phy.h

This patch fixes the whitespace around braces
to follow the linux kernel coding style and
removes some tabs to better align struct fields.
Signed-off-by: default avatarXenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0081fcc6
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define MAX_RFDEPENDCMD_CNT 16 #define MAX_RFDEPENDCMD_CNT 16
#define MAX_POSTCMD_CNT 16 #define MAX_POSTCMD_CNT 16
typedef enum _SwChnlCmdID{ typedef enum _SwChnlCmdID {
CmdID_End, CmdID_End,
CmdID_SetTxPowerLevel, CmdID_SetTxPowerLevel,
CmdID_BBRegWrite10, CmdID_BBRegWrite10,
...@@ -14,16 +14,16 @@ typedef enum _SwChnlCmdID{ ...@@ -14,16 +14,16 @@ typedef enum _SwChnlCmdID{
CmdID_WritePortUshort, CmdID_WritePortUshort,
CmdID_WritePortUchar, CmdID_WritePortUchar,
CmdID_RF_WriteReg, CmdID_RF_WriteReg,
}SwChnlCmdID; } SwChnlCmdID;
/*--------------------------------Define structure--------------------------------*/ /*--------------------------------Define structure--------------------------------*/
/* 1. Switch channel related */ /* 1. Switch channel related */
typedef struct _SwChnlCmd{ typedef struct _SwChnlCmd {
SwChnlCmdID CmdID; SwChnlCmdID CmdID;
u32 Para1; u32 Para1;
u32 Para2; u32 Para2;
u32 msDelay; u32 msDelay;
}__attribute__ ((packed)) SwChnlCmd; } __attribute__ ((packed)) SwChnlCmd;
extern u32 rtl819XMACPHY_Array_PG[]; extern u32 rtl819XMACPHY_Array_PG[];
extern u32 rtl819XPHY_REG_1T2RArray[]; extern u32 rtl819XPHY_REG_1T2RArray[];
...@@ -33,21 +33,21 @@ extern u32 rtl819XRadioB_Array[]; ...@@ -33,21 +33,21 @@ extern u32 rtl819XRadioB_Array[];
extern u32 rtl819XRadioC_Array[]; extern u32 rtl819XRadioC_Array[];
extern u32 rtl819XRadioD_Array[]; extern u32 rtl819XRadioD_Array[];
typedef enum _HW90_BLOCK{ typedef enum _HW90_BLOCK {
HW90_BLOCK_MAC = 0, HW90_BLOCK_MAC = 0,
HW90_BLOCK_PHY0 = 1, HW90_BLOCK_PHY0 = 1,
HW90_BLOCK_PHY1 = 2, HW90_BLOCK_PHY1 = 2,
HW90_BLOCK_RF = 3, HW90_BLOCK_RF = 3,
HW90_BLOCK_MAXIMUM = 4, // Never use this HW90_BLOCK_MAXIMUM = 4, // Never use this
}HW90_BLOCK_E, *PHW90_BLOCK_E; } HW90_BLOCK_E, *PHW90_BLOCK_E;
typedef enum _RF90_RADIO_PATH{ typedef enum _RF90_RADIO_PATH {
RF90_PATH_A = 0, //Radio Path A RF90_PATH_A = 0, //Radio Path A
RF90_PATH_B = 1, //Radio Path B RF90_PATH_B = 1, //Radio Path B
RF90_PATH_C = 2, //Radio Path C RF90_PATH_C = 2, //Radio Path C
RF90_PATH_D = 3, //Radio Path D RF90_PATH_D = 3, //Radio Path D
RF90_PATH_MAX //Max RF number 92 support RF90_PATH_MAX //Max RF number 92 support
}RF90_RADIO_PATH_E, *PRF90_RADIO_PATH_E; } RF90_RADIO_PATH_E, *PRF90_RADIO_PATH_E;
#define bMaskByte0 0xff #define bMaskByte0 0xff
#define bMaskByte1 0xff00 #define bMaskByte1 0xff00
...@@ -83,7 +83,7 @@ extern void rtl8192_SwChnl_WorkItem(struct net_device *dev); ...@@ -83,7 +83,7 @@ extern void rtl8192_SwChnl_WorkItem(struct net_device *dev);
void rtl8192_SetBWModeWorkItem(struct net_device *dev); void rtl8192_SetBWModeWorkItem(struct net_device *dev);
extern bool rtl8192_SetRFPowerState(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState); extern bool rtl8192_SetRFPowerState(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState);
//added by amy //added by amy
extern void InitialGain819xUsb(struct net_device *dev, u8 Operation); extern void InitialGain819xUsb(struct net_device *dev, u8 Operation);
extern void InitialGainOperateWorkItemCallBack(struct work_struct *work); extern void InitialGainOperateWorkItemCallBack(struct work_struct *work);
......
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