summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656/wcmd.c
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-07-13 10:42:45 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-13 12:22:34 -0700
commit33a60b87b65eb69bc31adb12ee92cf0664a2ad3b (patch)
tree37d6d5bb5dd56c69d6e377aba5aa8689ea5c6f73 /drivers/staging/vt6656/wcmd.c
parent9a309289b24afc1edb8f2be67efd7f91d163da81 (diff)
staging: vt6656: replace camel case from command variables
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>
Diffstat (limited to 'drivers/staging/vt6656/wcmd.c')
-rw-r--r--drivers/staging/vt6656/wcmd.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/drivers/staging/vt6656/wcmd.c b/drivers/staging/vt6656/wcmd.c
index fa7c7b654cbd..37ca3de2f1e3 100644
--- a/drivers/staging/vt6656/wcmd.c
+++ b/drivers/staging/vt6656/wcmd.c
@@ -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;
}