Commit 0b64587a authored by Aditya Jain's avatar Aditya Jain Committed by Greg Kroah-Hartman

staging: rtl8723bs: Clean up function declations

Clean up multiline function declartions in hal_phy_cfg.h
to improve code readablility
Signed-off-by: default avatarAditya Jain <aditya.jainadityajain.jain@gmail.com>
Link: https://lore.kernel.org/r/20200729192136.23828-3-aditya.jainadityajain.jain@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d737e289
...@@ -25,37 +25,16 @@ ...@@ -25,37 +25,16 @@
/*------------------------------Define structure End----------------------------*/ /*------------------------------Define structure End----------------------------*/
/*--------------------------Exported Function prototype---------------------*/ /*--------------------------Exported Function prototype---------------------*/
u32 u32 PHY_QueryBBReg_8723B(struct adapter *Adapter, u32 RegAddr, u32 BitMask);
PHY_QueryBBReg_8723B(
struct adapter *Adapter, void PHY_SetBBReg_8723B(struct adapter *Adapter, u32 RegAddr,
u32 RegAddr, u32 BitMask, u32 Data);
u32 BitMask
); u32 PHY_QueryRFReg_8723B(struct adapter *Adapter, u8 eRFPath,
u32 RegAddr, u32 BitMask);
void
PHY_SetBBReg_8723B( void PHY_SetRFReg_8723B(struct adapter *Adapter, u8 eRFPath,
struct adapter *Adapter, u32 RegAddr, u32 BitMask, u32 Data);
u32 RegAddr,
u32 BitMask,
u32 Data
);
u32
PHY_QueryRFReg_8723B(
struct adapter *Adapter,
u8 eRFPath,
u32 RegAddr,
u32 BitMask
);
void
PHY_SetRFReg_8723B(
struct adapter *Adapter,
u8 eRFPath,
u32 RegAddr,
u32 BitMask,
u32 Data
);
/* MAC/BB/RF HAL config */ /* MAC/BB/RF HAL config */
int PHY_BBConfig8723B(struct adapter *Adapter); int PHY_BBConfig8723B(struct adapter *Adapter);
...@@ -64,56 +43,25 @@ int PHY_RFConfig8723B(struct adapter *Adapter); ...@@ -64,56 +43,25 @@ int PHY_RFConfig8723B(struct adapter *Adapter);
s32 PHY_MACConfig8723B(struct adapter *padapter); s32 PHY_MACConfig8723B(struct adapter *padapter);
void void PHY_SetTxPowerIndex(struct adapter *Adapter, u32 PowerIndex,
PHY_SetTxPowerIndex( u8 RFPath, u8 Rate);
struct adapter *Adapter,
u32 PowerIndex, u8 PHY_GetTxPowerIndex(struct adapter *padapter, u8 RFPath, u8 Rate,
u8 RFPath, enum CHANNEL_WIDTH BandWidth, u8 Channel);
u8 Rate
); void PHY_GetTxPowerLevel8723B(struct adapter *Adapter, s32 *powerlevel);
u8 void PHY_SetTxPowerLevel8723B(struct adapter *Adapter, u8 channel);
PHY_GetTxPowerIndex(
struct adapter *padapter, void PHY_SetBWMode8723B(struct adapter *Adapter, enum CHANNEL_WIDTH Bandwidth,
u8 RFPath, unsigned char Offset);
u8 Rate,
enum CHANNEL_WIDTH BandWidth, /* Call after initialization */
u8 Channel void PHY_SwChnl8723B(struct adapter *Adapter, u8 channel);
);
void PHY_SetSwChnlBWMode8723B(struct adapter *Adapter, u8 channel,
void enum CHANNEL_WIDTH Bandwidth,
PHY_GetTxPowerLevel8723B( u8 Offset40, u8 Offset80);
struct adapter *Adapter,
s32 *powerlevel
);
void
PHY_SetTxPowerLevel8723B(
struct adapter *Adapter,
u8 channel
);
void
PHY_SetBWMode8723B(
struct adapter *Adapter,
enum CHANNEL_WIDTH Bandwidth, /* 20M or 40M */
unsigned char Offset /* Upper, Lower, or Don't care */
);
void
PHY_SwChnl8723B(/* Call after initialization */
struct adapter *Adapter,
u8 channel
);
void
PHY_SetSwChnlBWMode8723B(
struct adapter *Adapter,
u8 channel,
enum CHANNEL_WIDTH Bandwidth,
u8 Offset40,
u8 Offset80
);
/*--------------------------Exported Function prototype End---------------------*/ /*--------------------------Exported Function prototype End---------------------*/
......
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