Staging: rtl8192e: Rename variable Para1

Rename variable Para1 to para1
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-7-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Tree Davies 2024-09-08 12:26:23 -07:00 committed by Greg Kroah-Hartman
parent 63879b44f1
commit dcfa53c19c
2 changed files with 7 additions and 7 deletions

View 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;
@ -525,7 +525,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->para1 = para1;
pCmd->Para2 = Para2;
pCmd->ms_delay = ms_delay;
@ -618,15 +618,15 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
channel);
break;
case cmd_id_write_port_ulong:
rtl92e_writel(dev, CurrentCmd->Para1,
rtl92e_writel(dev, CurrentCmd->para1,
CurrentCmd->Para2);
break;
case cmd_id_write_port_ushort:
rtl92e_writew(dev, CurrentCmd->Para1,
rtl92e_writew(dev, CurrentCmd->para1,
CurrentCmd->Para2);
break;
case cmd_id_write_port_uchar:
rtl92e_writeb(dev, CurrentCmd->Para1,
rtl92e_writeb(dev, CurrentCmd->para1,
CurrentCmd->Para2);
break;
case cmd_id_rf_write_reg:
@ -634,7 +634,7 @@ static u8 _rtl92e_phy_switch_channel_step(struct net_device *dev, u8 channel,
priv->num_total_rf_path; eRFPath++)
rtl92e_set_rf_reg(dev,
(enum rf90_radio_path)eRFPath,
CurrentCmd->Para1, bMask12Bits,
CurrentCmd->para1, bMask12Bits,
CurrentCmd->Para2 << 7);
break;
default:

View File

@ -164,7 +164,7 @@ enum sw_chnl_cmd_id {
struct sw_chnl_cmd {
enum sw_chnl_cmd_id cmd_id;
u32 Para1;
u32 para1;
u32 Para2;
u32 ms_delay;
};