Commit e918443c authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Rename msDelay to ms_delay - Style

Rename the member variable msDelay to ms_delay. This change clears the
checkpatch issue with CamelCase naming. The change is purely a coding
style change which should not impact runtime code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 21807031
...@@ -1247,7 +1247,7 @@ static u8 rtl8192_phy_SetSwChnlCmdArray(struct sw_chnl_cmd *CmdTable, u32 CmdTab ...@@ -1247,7 +1247,7 @@ static u8 rtl8192_phy_SetSwChnlCmdArray(struct sw_chnl_cmd *CmdTable, u32 CmdTab
pCmd->cmd_id = CmdID; pCmd->cmd_id = CmdID;
pCmd->para_1 = Para1; pCmd->para_1 = Para1;
pCmd->para_2 = Para2; pCmd->para_2 = Para2;
pCmd->msDelay = msDelay; pCmd->ms_delay = msDelay;
return true; return true;
} }
...@@ -1365,7 +1365,7 @@ static u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel, ...@@ -1365,7 +1365,7 @@ static u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel,
if (CurrentCmd->cmd_id == CMD_ID_END) { if (CurrentCmd->cmd_id == CMD_ID_END) {
if ((*stage) == 2) { if ((*stage) == 2) {
(*delay) = CurrentCmd->msDelay; (*delay) = CurrentCmd->ms_delay;
return true; return true;
} }
(*stage)++; (*stage)++;
...@@ -1407,7 +1407,7 @@ static u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel, ...@@ -1407,7 +1407,7 @@ static u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel,
break; break;
} while (true); } while (true);
(*delay) = CurrentCmd->msDelay; (*delay) = CurrentCmd->ms_delay;
(*step)++; (*step)++;
return false; return false;
} }
......
...@@ -22,7 +22,7 @@ struct sw_chnl_cmd { ...@@ -22,7 +22,7 @@ struct sw_chnl_cmd {
enum switch_chan_cmd_id cmd_id; enum switch_chan_cmd_id cmd_id;
u32 para_1; u32 para_1;
u32 para_2; u32 para_2;
u32 msDelay; u32 ms_delay;
} __packed; } __packed;
extern u32 rtl819XMACPHY_Array_PG[]; extern u32 rtl819XMACPHY_Array_PG[];
......
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