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: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        pCmd->cmd_id = CmdID;
        pCmd->para_1 = Para1;
        pCmd->para_2 = Para2;
-       pCmd->msDelay = msDelay;
+       pCmd->ms_delay = msDelay;
 
        return true;
 }
 
                if (CurrentCmd->cmd_id == CMD_ID_END) {
                        if ((*stage) == 2) {
-                               (*delay) = CurrentCmd->msDelay;
+                               (*delay) = CurrentCmd->ms_delay;
                                return true;
                        }
                        (*stage)++;
                break;
        } while (true);
 
-       (*delay) = CurrentCmd->msDelay;
+       (*delay) = CurrentCmd->ms_delay;
        (*step)++;
        return false;
 }
 
        enum switch_chan_cmd_id cmd_id;
        u32                     para_1;
        u32                     para_2;
-       u32                     msDelay;
+       u32                     ms_delay;
 } __packed;
 
 extern u32 rtl819XMACPHY_Array_PG[];