mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 15:13:44 -04:00
Staging: rtl8723bs: fix spaces in HalPhyRf.c
This commit fixes the following checkpatch.pl errors:
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#26: FILE: ./hal/HalPhyRf.c:26:
+void ConfigureTxpowerTrack(struct DM_ODM_T * pDM_Odm, struct TXPWRTRACK_CFG * pConfig)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#26: FILE: ./hal/HalPhyRf.c:26:
+void ConfigureTxpowerTrack(struct DM_ODM_T * pDM_Odm, struct TXPWRTRACK_CFG * pConfig)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#39: FILE: ./hal/HalPhyRf.c:39:
+void ODM_ClearTxPowerTrackingState(struct DM_ODM_T * pDM_Odm)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#77: FILE: ./hal/HalPhyRf.c:77:
+ struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210315170618.2566-14-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
427afe037f
commit
1a60aeebb2
@@ -23,7 +23,7 @@
|
||||
} while (0)
|
||||
|
||||
|
||||
void ConfigureTxpowerTrack(struct DM_ODM_T * pDM_Odm, struct TXPWRTRACK_CFG * pConfig)
|
||||
void ConfigureTxpowerTrack(struct DM_ODM_T *pDM_Odm, struct TXPWRTRACK_CFG *pConfig)
|
||||
{
|
||||
ConfigureTxpowerTrack_8723B(pConfig);
|
||||
}
|
||||
@@ -36,7 +36,7 @@ void ConfigureTxpowerTrack(struct DM_ODM_T * pDM_Odm, struct TXPWRTRACK_CFG * pC
|
||||
/* NOTE: If Tx BB swing or Tx scaling is varified during run-time, still */
|
||||
/* need to call this function. */
|
||||
/* */
|
||||
void ODM_ClearTxPowerTrackingState(struct DM_ODM_T * pDM_Odm)
|
||||
void ODM_ClearTxPowerTrackingState(struct DM_ODM_T *pDM_Odm)
|
||||
{
|
||||
struct hal_com_data *pHalData = GET_HAL_DATA(pDM_Odm->Adapter);
|
||||
u8 p = 0;
|
||||
@@ -74,7 +74,7 @@ void ODM_TXPowerTrackingCallback_ThermalMeter(struct adapter *Adapter)
|
||||
{
|
||||
|
||||
struct hal_com_data *pHalData = GET_HAL_DATA(Adapter);
|
||||
struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
|
||||
struct DM_ODM_T *pDM_Odm = &pHalData->odmpriv;
|
||||
|
||||
u8 ThermalValue = 0, delta, delta_LCK, delta_IQK, p = 0, i = 0;
|
||||
u8 ThermalValue_AVG_count = 0;
|
||||
|
||||
Reference in New Issue
Block a user