Commit afbd10d9 authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman
Browse files

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: default avatarMichael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210306081133.1272-2-straube.linux@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent edccaa4c
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -386,13 +386,12 @@ static void odm_Process_RSSIForDM(struct odm_dm_struct *dm_odm,

/*  Endianness before calling this API */
void odm_phy_status_query(struct odm_dm_struct *dm_odm,
			  struct odm_phy_status_info *pPhyInfo,
			  u8 *pPhyStatus, struct odm_per_pkt_info *pPktinfo)
			  struct odm_phy_status_info *phy_info,
			  u8 *phy_status, struct odm_per_pkt_info *pkt_info)
{
	odm_RxPhyStatus92CSeries_Parsing(dm_odm, pPhyInfo, pPhyStatus,
					 pPktinfo);
	odm_RxPhyStatus92CSeries_Parsing(dm_odm, phy_info, phy_status, pkt_info);
	if (dm_odm->RSSI_test)
		;/*  Select the packets to do RSSI checking for antenna switching. */
	else
		odm_Process_RSSIForDM(dm_odm, pPhyInfo, pPktinfo);
		odm_Process_RSSIForDM(dm_odm, phy_info, pkt_info);
}
+4 −4
Original line number Diff line number Diff line
@@ -93,9 +93,9 @@ struct phy_status_rpt {
#endif
};

void odm_phy_status_query(struct odm_dm_struct *pDM_Odm,
			  struct odm_phy_status_info *pPhyInfo,
			  u8 *pPhyStatus,
			  struct odm_per_pkt_info *pPktinfo);
void odm_phy_status_query(struct odm_dm_struct *dm_odm,
			  struct odm_phy_status_info *phy_info,
			  u8 *phy_status,
			  struct odm_per_pkt_info *pkt_info);

#endif