staging: vt6656: replace camel case from command variables
authorMalcolm Priestley <tvboxspy@gmail.com>
Sun, 13 Jul 2014 09:42:45 +0000 (10:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Jul 2014 19:22:34 +0000 (12:22 -0700)
camel case changes
uCmdDequeueIdx -> cmd_dequeue_idx
uCmdEnqueueIdx -> cmd_enqueue_idx
cbFreeCmdQueue -> free_cmd_queue
bCmdRunning -> cmd_running

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/device.h
drivers/staging/vt6656/main_usb.c
drivers/staging/vt6656/wcmd.c

index a1ed376acac29354ae7386ec8465774ae71aa5cf..436f10966d2c8f0c33d2db2f9a645d28b5b3bcb5 100644 (file)
@@ -407,10 +407,10 @@ struct vnt_private {
        /* 802.11 counter */
 
        enum vnt_cmd cmd_queue[CMD_Q_SIZE];
-       u32 uCmdDequeueIdx;
-       u32 uCmdEnqueueIdx;
-       u32 cbFreeCmdQueue;
-       int bCmdRunning;
+       u32 cmd_dequeue_idx;
+       u32 cmd_enqueue_idx;
+       u32 free_cmd_queue;
+       int cmd_running;
 
        unsigned long key_entry_inuse;
 
index 4cdf29eb593e494687677384e2530fb23d5afa4b..34b6148784cdb9aedcff0b71b67a9473a61a9aa1 100644 (file)
@@ -708,7 +708,7 @@ static void vnt_stop(struct ieee80211_hw *hw)
 
        cancel_delayed_work_sync(&priv->run_command_work);
 
-       priv->bCmdRunning = false;
+       priv->cmd_running = false;
 
        priv->flags &= ~DEVICE_FLAGS_OPENED;
 
index fa7c7b654cbd4b611783a76ebffe46ecef3ae785..37ca3de2f1e3d29316e32aae806052f5cfb92d96 100644 (file)
@@ -64,7 +64,7 @@ void vRunCommand(struct work_struct *work)
        if (priv->Flags & fMP_DISCONNECTED)
                return;
 
-       if (priv->bCmdRunning != true)
+       if (priv->cmd_running != true)
                return;
 
        switch (priv->command_state) {
@@ -140,17 +140,17 @@ static int s_bCommandComplete(struct vnt_private *priv)
 {
 
        priv->command_state = WLAN_CMD_IDLE;
-       if (priv->cbFreeCmdQueue == CMD_Q_SIZE) {
+       if (priv->free_cmd_queue == CMD_Q_SIZE) {
                /* Command Queue Empty */
-               priv->bCmdRunning = false;
+               priv->cmd_running = false;
                return true;
        }
 
-       priv->command = priv->cmd_queue[priv->uCmdDequeueIdx];
+       priv->command = priv->cmd_queue[priv->cmd_dequeue_idx];
 
-       ADD_ONE_WITH_WRAP_AROUND(priv->uCmdDequeueIdx, CMD_Q_SIZE);
-       priv->cbFreeCmdQueue++;
-       priv->bCmdRunning = true;
+       ADD_ONE_WITH_WRAP_AROUND(priv->cmd_dequeue_idx, CMD_Q_SIZE);
+       priv->free_cmd_queue++;
+       priv->cmd_running = true;
 
        switch (priv->command) {
        case WLAN_CMD_INIT_MAC80211:
@@ -189,15 +189,15 @@ static int s_bCommandComplete(struct vnt_private *priv)
 int bScheduleCommand(struct vnt_private *priv, enum vnt_cmd command, u8 *item0)
 {
 
-       if (priv->cbFreeCmdQueue == 0)
+       if (priv->free_cmd_queue == 0)
                return false;
 
-       priv->cmd_queue[priv->uCmdEnqueueIdx] = command;
+       priv->cmd_queue[priv->cmd_enqueue_idx] = command;
 
-       ADD_ONE_WITH_WRAP_AROUND(priv->uCmdEnqueueIdx, CMD_Q_SIZE);
-       priv->cbFreeCmdQueue--;
+       ADD_ONE_WITH_WRAP_AROUND(priv->cmd_enqueue_idx, CMD_Q_SIZE);
+       priv->free_cmd_queue--;
 
-       if (priv->bCmdRunning == false)
+       if (priv->cmd_running == false)
                s_bCommandComplete(priv);
 
        return true;
@@ -206,9 +206,9 @@ int bScheduleCommand(struct vnt_private *priv, enum vnt_cmd command, u8 *item0)
 
 void vResetCommandTimer(struct vnt_private *priv)
 {
-       priv->cbFreeCmdQueue = CMD_Q_SIZE;
-       priv->uCmdDequeueIdx = 0;
-       priv->uCmdEnqueueIdx = 0;
+       priv->free_cmd_queue = CMD_Q_SIZE;
+       priv->cmd_dequeue_idx = 0;
+       priv->cmd_enqueue_idx = 0;
        priv->command_state = WLAN_CMD_IDLE;
-       priv->bCmdRunning = false;
+       priv->cmd_running = false;
 }