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

Staging: rtl8192e: Rename variable Para1

Rename variable Para1 to para1
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-7-tdavies@darkphysics.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 63879b44
...@@ -510,7 +510,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev, ...@@ -510,7 +510,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev,
struct sw_chnl_cmd *CmdTable, struct sw_chnl_cmd *CmdTable,
u32 CmdTableIdx, u32 CmdTableSz, u32 CmdTableIdx, u32 CmdTableSz,
enum sw_chnl_cmd_id cmd_id, 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; struct sw_chnl_cmd *pCmd;
...@@ -525,7 +525,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev, ...@@ -525,7 +525,7 @@ static u8 _rtl92e_phy_set_sw_chnl_cmd_array(struct net_device *dev,
pCmd = CmdTable + CmdTableIdx; pCmd = CmdTable + CmdTableIdx;
pCmd->cmd_id = cmd_id; pCmd->cmd_id = cmd_id;
pCmd->Para1 = Para1; pCmd->para1 = para1;
pCmd->Para2 = Para2; pCmd->Para2 = Para2;
pCmd->ms_delay = ms_delay; pCmd->ms_delay = ms_delay;
...@@ -618,15 +618,15 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel, ...@@ -618,15 +618,15 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
channel); channel);
break; break;
case cmd_id_write_port_ulong: case cmd_id_write_port_ulong:
rtl92e_writel(dev, CurrentCmd->Para1, rtl92e_writel(dev, CurrentCmd->para1,
CurrentCmd->Para2); CurrentCmd->Para2);
break; break;
case cmd_id_write_port_ushort: case cmd_id_write_port_ushort:
rtl92e_writew(dev, CurrentCmd->Para1, rtl92e_writew(dev, CurrentCmd->para1,
CurrentCmd->Para2); CurrentCmd->Para2);
break; break;
case cmd_id_write_port_uchar: case cmd_id_write_port_uchar:
rtl92e_writeb(dev, CurrentCmd->Para1, rtl92e_writeb(dev, CurrentCmd->para1,
CurrentCmd->Para2); CurrentCmd->Para2);
break; break;
case cmd_id_rf_write_reg: case cmd_id_rf_write_reg:
...@@ -634,7 +634,7 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel, ...@@ -634,7 +634,7 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
priv->num_total_rf_path; eRFPath++) priv->num_total_rf_path; eRFPath++)
rtl92e_set_rf_reg(dev, rtl92e_set_rf_reg(dev,
(enum rf90_radio_path)eRFPath, (enum rf90_radio_path)eRFPath,
CurrentCmd->Para1, bMask12Bits, CurrentCmd->para1, bMask12Bits,
CurrentCmd->Para2 << 7); CurrentCmd->Para2 << 7);
break; break;
default: default:
......
...@@ -164,7 +164,7 @@ enum sw_chnl_cmd_id { ...@@ -164,7 +164,7 @@ enum sw_chnl_cmd_id {
struct sw_chnl_cmd { struct sw_chnl_cmd {
enum sw_chnl_cmd_id cmd_id; enum sw_chnl_cmd_id cmd_id;
u32 Para1; u32 para1;
u32 Para2; u32 Para2;
u32 ms_delay; 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