]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
staging: rtl8188eu: rename parameters of odm_phy_status_query()
authorMichael Straube <straube.linux@gmail.com>
Sat, 6 Mar 2021 08:11:33 +0000 (09:11 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Mar 2021 08:25:33 +0000 (09:25 +0100)
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>
drivers/staging/rtl8188eu/hal/odm_hwconfig.c
drivers/staging/rtl8188eu/include/odm_hwconfig.h

index c5af0c559cba28327b5a050fe5e6f3f7498a1d62..684b6cec0f094ad30ff54e3f829235060827056f 100644 (file)
@@ -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);
 }
index dc86e4058eff326db3f62a2c701d04d7f39082ef..4f4d3cfb6c77c6ed353580984cebfd5c1a132c73 100644 (file)
@@ -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