staging: rtl8188eu: rename ODM_PhyStatusQuery()
Rename ODM_PhyStatusQuery() to odm_phy_status_query() to avoid camel case. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20210306081133.1272-1-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5866bce00d
commit
edccaa4ced
|
@ -385,7 +385,7 @@ static void odm_Process_RSSIForDM(struct odm_dm_struct *dm_odm,
|
|||
}
|
||||
|
||||
/* Endianness before calling this API */
|
||||
void ODM_PhyStatusQuery(struct odm_dm_struct *dm_odm,
|
||||
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)
|
||||
{
|
||||
|
|
|
@ -171,7 +171,7 @@ void update_recvframe_phyinfo_88e(struct recv_frame *precvframe,
|
|||
pkt_info.StationID = psta->mac_id;
|
||||
pkt_info.Rate = pattrib->mcs_rate;
|
||||
|
||||
ODM_PhyStatusQuery(&padapter->HalData->odmpriv, pPHYInfo,
|
||||
odm_phy_status_query(&padapter->HalData->odmpriv, pPHYInfo,
|
||||
(u8 *)pphy_status, &(pkt_info));
|
||||
|
||||
precvframe->psta = NULL;
|
||||
|
|
|
@ -93,7 +93,7 @@ struct phy_status_rpt {
|
|||
#endif
|
||||
};
|
||||
|
||||
void ODM_PhyStatusQuery(struct odm_dm_struct *pDM_Odm,
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue