Skip to content

Commit

Permalink
Staging: rtl8723bs: fix spaces in HalPhyRf_8723B.h
Browse files Browse the repository at this point in the history
This commit fixes the following checkpatch.pl errors:

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    torvalds#19: FILE: ./hal/HalPhyRf_8723B.h:19:
    +void ConfigureTxpowerTrack_8723B(struct TXPWRTRACK_CFG * pConfig);

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    torvalds#22: FILE: ./hal/HalPhyRf_8723B.h:22:
    +	struct DM_ODM_T * pDM_Odm,

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    torvalds#29: FILE: ./hal/HalPhyRf_8723B.h:29:
    +	struct DM_ODM_T * pDM_Odm,

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    torvalds#44: FILE: ./hal/HalPhyRf_8723B.h:44:
    +void ODM_SetIQCbyRFpath(struct DM_ODM_T * pDM_Odm, u32 RFpath);

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    torvalds#49: FILE: ./hal/HalPhyRf_8723B.h:49:
    +void PHY_LCCalibrate_8723B(struct DM_ODM_T * pDM_Odm);

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
  • Loading branch information
Marco Cesati authored and intel-lab-lkp committed Mar 15, 2021
1 parent 8f995e8 commit 9242c99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
#define RF_T_METER_8723B 0x42 /* */


void ConfigureTxpowerTrack_8723B(struct TXPWRTRACK_CFG * pConfig);
void ConfigureTxpowerTrack_8723B(struct TXPWRTRACK_CFG *pConfig);

void DoIQK_8723B(
struct DM_ODM_T * pDM_Odm,
struct DM_ODM_T *pDM_Odm,
u8 DeltaThermalIndex,
u8 ThermalValue,
u8 Threshold
);

void ODM_TxPwrTrackSetPwr_8723B(
struct DM_ODM_T * pDM_Odm,
struct DM_ODM_T *pDM_Odm,
enum PWRTRACK_METHOD Method,
u8 RFPath,
u8 ChannelMappedIndex
Expand All @@ -41,12 +41,12 @@ void PHY_IQCalibrate_8723B(
u8 RF_Path
);

void ODM_SetIQCbyRFpath(struct DM_ODM_T * pDM_Odm, u32 RFpath);
void ODM_SetIQCbyRFpath(struct DM_ODM_T *pDM_Odm, u32 RFpath);

/* */
/* LC calibrate */
/* */
void PHY_LCCalibrate_8723B(struct DM_ODM_T * pDM_Odm);
void PHY_LCCalibrate_8723B(struct DM_ODM_T *pDM_Odm);

/* */
/* AP calibrate */
Expand Down

0 comments on commit 9242c99

Please sign in to comment.