Commit edccaa4c authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman

staging: rtl8188eu: rename ODM_PhyStatusQuery()

Rename ODM_PhyStatusQuery() to odm_phy_status_query() to avoid camel
case.
Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210306081133.1272-1-straube.linux@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5866bce0
...@@ -385,7 +385,7 @@ static void odm_Process_RSSIForDM(struct odm_dm_struct *dm_odm, ...@@ -385,7 +385,7 @@ static void odm_Process_RSSIForDM(struct odm_dm_struct *dm_odm,
} }
/* Endianness before calling this API */ /* 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, struct odm_phy_status_info *pPhyInfo,
u8 *pPhyStatus, struct odm_per_pkt_info *pPktinfo) u8 *pPhyStatus, struct odm_per_pkt_info *pPktinfo)
{ {
......
...@@ -171,7 +171,7 @@ void update_recvframe_phyinfo_88e(struct recv_frame *precvframe, ...@@ -171,7 +171,7 @@ void update_recvframe_phyinfo_88e(struct recv_frame *precvframe,
pkt_info.StationID = psta->mac_id; pkt_info.StationID = psta->mac_id;
pkt_info.Rate = pattrib->mcs_rate; 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)); (u8 *)pphy_status, &(pkt_info));
precvframe->psta = NULL; precvframe->psta = NULL;
......
...@@ -93,7 +93,7 @@ struct phy_status_rpt { ...@@ -93,7 +93,7 @@ struct phy_status_rpt {
#endif #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, struct odm_phy_status_info *pPhyInfo,
u8 *pPhyStatus, u8 *pPhyStatus,
struct odm_per_pkt_info *pPktinfo); struct odm_per_pkt_info *pPktinfo);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment