]> www.infradead.org Git - linux.git/commitdiff
Staging: rtl8192e: Rename variable Para2
authorTree Davies <tdavies@darkphysics.net>
Sun, 8 Sep 2024 19:26:24 +0000 (12:26 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Sep 2024 13:54:42 +0000 (15:54 +0200)
Rename variable Para2 to para2
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/20240908192633.94144-8-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 797ae6896d626e17374b9f4830a4797159a731be..fbe624e235df0dec492c98bcb76a886463d40f0c 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 ms_delay)
+                                           u32 para1, u32 para2, u32 ms_delay)
 {
        struct sw_chnl_cmd *pCmd;
 
@@ -526,7 +526,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev,
        pCmd = CmdTable + CmdTableIdx;
        pCmd->cmd_id = cmd_id;
        pCmd->para1 = para1;
-       pCmd->Para2 = Para2;
+       pCmd->para2 = para2;
        pCmd->ms_delay = ms_delay;
 
        return true;
@@ -619,15 +619,15 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
                                break;
                        case cmd_id_write_port_ulong:
                                rtl92e_writel(dev, CurrentCmd->para1,
-                                             CurrentCmd->Para2);
+                                             CurrentCmd->para2);
                                break;
                        case cmd_id_write_port_ushort:
                                rtl92e_writew(dev, CurrentCmd->para1,
-                                             CurrentCmd->Para2);
+                                             CurrentCmd->para2);
                                break;
                        case cmd_id_write_port_uchar:
                                rtl92e_writeb(dev, CurrentCmd->para1,
-                                             CurrentCmd->Para2);
+                                             CurrentCmd->para2);
                                break;
                        case cmd_id_rf_write_reg:
                                for (eRFPath = 0; eRFPath <
@@ -635,7 +635,7 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
                                        rtl92e_set_rf_reg(dev,
                                                 (enum rf90_radio_path)eRFPath,
                                                 CurrentCmd->para1, bMask12Bits,
-                                                CurrentCmd->Para2 << 7);
+                                                CurrentCmd->para2 << 7);
                                break;
                        default:
                                break;
index 1e119192ad38501d2db2ccd5fad56455c7d0f9b5..d63044607fb5b239a811d6f3a780b49eed5e2c8c 100644 (file)
@@ -165,7 +165,7 @@ enum sw_chnl_cmd_id {
 struct sw_chnl_cmd {
        enum sw_chnl_cmd_id cmd_id;
        u32                     para1;
-       u32                     Para2;
+       u32                     para2;
        u32                     ms_delay;
 };