staging: vt6656: rename vResetCommandTimer to vnt_reset_command_timer

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-13 10:42:51 +01:00 committed by Greg Kroah-Hartman
parent 57981a65fb
commit 68cc161ee5
3 changed files with 3 additions and 3 deletions

View File

@ -1135,7 +1135,7 @@ vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
usb_device_reset(priv);
MP_CLEAR_FLAG(priv, fMP_DISCONNECTED);
vResetCommandTimer(priv);
vnt_reset_command_timer(priv);
vnt_schedule_command(priv, WLAN_CMD_INIT_MAC80211);

View File

@ -202,7 +202,7 @@ int vnt_schedule_command(struct vnt_private *priv, enum vnt_cmd command)
}
void vResetCommandTimer(struct vnt_private *priv)
void vnt_reset_command_timer(struct vnt_private *priv)
{
priv->free_cmd_queue = CMD_Q_SIZE;
priv->cmd_dequeue_idx = 0;

View File

@ -59,7 +59,7 @@ enum vnt_cmd_state {
struct vnt_private;
void vResetCommandTimer(struct vnt_private *);
void vnt_reset_command_timer(struct vnt_private *);
int vnt_schedule_command(struct vnt_private *, enum vnt_cmd);