staging: rtl8188eu: rename parameters of odm_phy_status_query()

Rename parameters of odm_phy_status_query() to avoid camel case.

pDM_Odm -> dm_odm
pPhyInfo -> phy_info
pPhyStatus -> phy_status
pPktinfo -> pkt_info

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210306081133.1272-2-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Michael Straube 2021-03-06 09:11:33 +01:00 committed by Greg Kroah-Hartman
parent edccaa4ced
commit afbd10d98a
2 changed files with 8 additions and 9 deletions

View File

@ -386,13 +386,12 @@ static void odm_Process_RSSIForDM(struct odm_dm_struct *dm_odm,
/* Endianness before calling this API */ /* Endianness before calling this API */
void odm_phy_status_query(struct odm_dm_struct *dm_odm, void odm_phy_status_query(struct odm_dm_struct *dm_odm,
struct odm_phy_status_info *pPhyInfo, struct odm_phy_status_info *phy_info,
u8 *pPhyStatus, struct odm_per_pkt_info *pPktinfo) u8 *phy_status, struct odm_per_pkt_info *pkt_info)
{ {
odm_RxPhyStatus92CSeries_Parsing(dm_odm, pPhyInfo, pPhyStatus, odm_RxPhyStatus92CSeries_Parsing(dm_odm, phy_info, phy_status, pkt_info);
pPktinfo);
if (dm_odm->RSSI_test) if (dm_odm->RSSI_test)
;/* Select the packets to do RSSI checking for antenna switching. */ ;/* Select the packets to do RSSI checking for antenna switching. */
else else
odm_Process_RSSIForDM(dm_odm, pPhyInfo, pPktinfo); odm_Process_RSSIForDM(dm_odm, phy_info, pkt_info);
} }

View File

@ -93,9 +93,9 @@ struct phy_status_rpt {
#endif #endif
}; };
void odm_phy_status_query(struct odm_dm_struct *pDM_Odm, void odm_phy_status_query(struct odm_dm_struct *dm_odm,
struct odm_phy_status_info *pPhyInfo, struct odm_phy_status_info *phy_info,
u8 *pPhyStatus, u8 *phy_status,
struct odm_per_pkt_info *pPktinfo); struct odm_per_pkt_info *pkt_info);
#endif #endif