]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
Staging: rtl8192e: Rename variable msDelay
authorTree Davies <tdavies@darkphysics.net>
Mon, 26 Aug 2024 00:17:23 +0000 (17:17 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 29 Aug 2024 09:55:21 +0000 (11:55 +0200)
Rename variable msDelay to ms_delay
to fix checkpatch warning Avoid CamelCase.

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240826001724.274811-6-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
drivers/staging/rtl8192e/rtllib.h

index 939f0a7c3a900e5c609d6e4b6f14b4ca16d90e63..059b1f478a6c267620d675bdac80d6f2bdd6a5ad 100644 (file)
@@ -510,7 +510,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev,
                                            struct sw_chnl_cmd *CmdTable,
                                            u32 CmdTableIdx, u32 CmdTableSz,
                                            enum sw_chnl_cmd_id cmd_id,
-                                           u32 Para1, u32 Para2, u32 msDelay)
+                                           u32 Para1, u32 Para2, u32 ms_delay)
 {
        struct sw_chnl_cmd *pCmd;
 
@@ -527,7 +527,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev,
        pCmd->cmd_id = cmd_id;
        pCmd->Para1 = Para1;
        pCmd->Para2 = Para2;
-       pCmd->msDelay = msDelay;
+       pCmd->ms_delay = ms_delay;
 
        return true;
 }
@@ -645,7 +645,7 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
                } while (true);
        } /*for (Number of RF paths)*/
 
-       (*delay) = CurrentCmd->msDelay;
+       (*delay) = CurrentCmd->ms_delay;
        (*step)++;
        return false;
 }
index 41ae98e01a30bfe62c986931fd3e1d0033a3bfde..a5ce3d2b86009b78c257ebb2fc753f7978f10e49 100644 (file)
@@ -166,7 +166,7 @@ struct sw_chnl_cmd {
        enum sw_chnl_cmd_id cmd_id;
        u32                     Para1;
        u32                     Para2;
-       u32                     msDelay;
+       u32                     ms_delay;
 };
 
 /*--------------------------Define -------------------------------------------*/