Commit 86ad674d authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman

Staging: rtl8192e: Rename variable Para2

Rename variable Para2 to para2
to fix checkpatch warning Avoid CamelCase.
Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240908192633.94144-8-tdavies@darkphysics.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dcfa53c1
......@@ -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;
......
......@@ -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;
};
......
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