This commit fixes the following checkpatch.pl errors:
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#26: FILE: ./hal/odm_HWConfig.c:26:
+s32 odm_SignalScaleMapping(struct DM_ODM_T * pDM_Odm, s32 CurrSig)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#80: FILE: ./hal/odm_HWConfig.c:80:
+ struct DM_ODM_T * pDM_Odm,
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#93: FILE: ./hal/odm_HWConfig.c:93:
+ struct PHY_STATUS_RPT_8192CD_T * pPhyStaRpt = (struct
PHY_STATUS_RPT_8192CD_T *)pPhyStatus;
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#250: FILE: ./hal/odm_HWConfig.c:250:
+ struct DM_ODM_T * pDM_Odm, struct odm_phy_info *pPhyInfo, struct
odm_packet_info *pPktinfo
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#404: FILE: ./hal/odm_HWConfig.c:404:
+ struct DM_ODM_T * pDM_Odm,
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#418: FILE: ./hal/odm_HWConfig.c:418:
+ struct DM_ODM_T * pDM_Odm,
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#434: FILE: ./hal/odm_HWConfig.c:434:
+ struct DM_ODM_T * pDM_Odm,
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#453: FILE: ./hal/odm_HWConfig.c:453:
+enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct DM_ODM_T *
pDM_Odm)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#468: FILE: ./hal/odm_HWConfig.c:468:
+ struct DM_ODM_T * pDM_Odm, enum ODM_BB_Config_Type ConfigType
Signed-off-by: Marco Cesati <[email protected]>
---
drivers/staging/rtl8723bs/hal/odm_HWConfig.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/rtl8723bs/hal/odm_HWConfig.c
b/drivers/staging/rtl8723bs/hal/odm_HWConfig.c
index de63e4a2932e..13f1d1cbd6b5 100644
--- a/drivers/staging/rtl8723bs/hal/odm_HWConfig.c
+++ b/drivers/staging/rtl8723bs/hal/odm_HWConfig.c
@@ -23,7 +23,7 @@ static u8 odm_QueryRxPwrPercentage(s8 AntPower)
}
-s32 odm_SignalScaleMapping(struct DM_ODM_T * pDM_Odm, s32 CurrSig)
+s32 odm_SignalScaleMapping(struct DM_ODM_T *pDM_Odm, s32 CurrSig)
{
s32 RetSig = 0;
@@ -77,7 +77,7 @@ static u8 odm_EVMdbToPercentage(s8 Value)
}
static void odm_RxPhyStatus92CSeries_Parsing(
- struct DM_ODM_T * pDM_Odm,
+ struct DM_ODM_T *pDM_Odm,
struct odm_phy_info *pPhyInfo,
u8 *pPhyStatus,
struct odm_packet_info *pPktinfo
@@ -90,7 +90,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(
bool isCCKrate = false;
u8 rf_rx_num = 0;
u8 LNA_idx, VGA_idx;
- struct PHY_STATUS_RPT_8192CD_T * pPhyStaRpt = (struct
PHY_STATUS_RPT_8192CD_T *)pPhyStatus;
+ struct PHY_STATUS_RPT_8192CD_T *pPhyStaRpt = (struct
PHY_STATUS_RPT_8192CD_T *)pPhyStatus;
isCCKrate = pPktinfo->data_rate <= DESC_RATE11M;
pPhyInfo->rx_mimo_signal_quality[ODM_RF_PATH_A] = -1;
@@ -247,7 +247,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(
}
static void odm_Process_RSSIForDM(
- struct DM_ODM_T * pDM_Odm, struct odm_phy_info *pPhyInfo, struct
odm_packet_info *pPktinfo
+ struct DM_ODM_T *pDM_Odm, struct odm_phy_info *pPhyInfo, struct
odm_packet_info *pPktinfo
)
{
@@ -401,7 +401,7 @@ static void odm_Process_RSSIForDM(
/* Endianness before calling this API */
/* */
static void ODM_PhyStatusQuery_92CSeries(
- struct DM_ODM_T * pDM_Odm,
+ struct DM_ODM_T *pDM_Odm,
struct odm_phy_info *pPhyInfo,
u8 *pPhyStatus,
struct odm_packet_info *pPktinfo
@@ -415,7 +415,7 @@ static void ODM_PhyStatusQuery_92CSeries(
}
void ODM_PhyStatusQuery(
- struct DM_ODM_T * pDM_Odm,
+ struct DM_ODM_T *pDM_Odm,
struct odm_phy_info *pPhyInfo,
u8 *pPhyStatus,
struct odm_packet_info *pPktinfo
@@ -431,7 +431,7 @@ void ODM_PhyStatusQuery(
/* */
enum HAL_STATUS ODM_ConfigRFWithHeaderFile(
- struct DM_ODM_T * pDM_Odm,
+ struct DM_ODM_T *pDM_Odm,
enum ODM_RF_Config_Type ConfigType,
enum ODM_RF_RADIO_PATH_E eRFPath
)
@@ -450,7 +450,7 @@ enum HAL_STATUS ODM_ConfigRFWithHeaderFile(
return HAL_STATUS_SUCCESS;
}
-enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct DM_ODM_T * pDM_Odm)
+enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct DM_ODM_T *pDM_Odm)
{
ODM_RT_TRACE(pDM_Odm, ODM_COMP_INIT, ODM_DBG_LOUD,
("===>ODM_ConfigRFWithTxPwrTrackHeaderFile
(%s)\n", (pDM_Odm->bIsMPChip) ? "MPChip" : "TestChip"));
@@ -465,7 +465,7 @@ enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct
DM_ODM_T * pDM_Odm)
}
enum HAL_STATUS ODM_ConfigBBWithHeaderFile(
- struct DM_ODM_T * pDM_Odm, enum ODM_BB_Config_Type ConfigType
+ struct DM_ODM_T *pDM_Odm, enum ODM_BB_Config_Type ConfigType
)
{
ODM_RT_TRACE(pDM_Odm, ODM_COMP_INIT, ODM_DBG_LOUD,
--
2.30.2
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel