staging: vt6656: Drop u8 pointer and rename bScheduleCommand.

Rename to vnt_schedule_command removing unused u8 pointer.

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:50 +01:00 committed by Greg Kroah-Hartman
parent 592365ae4a
commit 57981a65fb
5 changed files with 10 additions and 12 deletions

View File

@ -172,20 +172,18 @@ void INTnsProcessData(struct vnt_private *priv)
if (int_data->isr0 != 0) {
if (int_data->isr0 & ISR_BNTX &&
priv->op_mode == NL80211_IFTYPE_AP)
bScheduleCommand(priv, WLAN_CMD_BECON_SEND, NULL);
vnt_schedule_command(priv, WLAN_CMD_BECON_SEND);
if (int_data->isr0 & ISR_TBTT) {
if (priv->hw->conf.flags & IEEE80211_CONF_PS)
bScheduleCommand((void *) priv,
WLAN_CMD_TBTT_WAKEUP,
NULL);
vnt_schedule_command(priv,
WLAN_CMD_TBTT_WAKEUP);
#if 0 /* TODO channel switch */
if (priv->bChannelSwitch) {
priv->byChannelSwitchCount--;
if (priv->byChannelSwitchCount == 0)
bScheduleCommand((void *) priv,
WLAN_CMD_11H_CHSW,
NULL);
vnt_schedule_command(priv,
WLAN_CMD_11H_CHSW);
}
#endif
}

View File

@ -1137,7 +1137,7 @@ vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
MP_CLEAR_FLAG(priv, fMP_DISCONNECTED);
vResetCommandTimer(priv);
bScheduleCommand(priv, WLAN_CMD_INIT_MAC80211, NULL);
vnt_schedule_command(priv, WLAN_CMD_INIT_MAC80211);
return 0;

View File

@ -767,7 +767,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
if (priv->wCurrentRate != current_rate &&
!(priv->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)) {
priv->wCurrentRate = current_rate;
bScheduleCommand(priv, WLAN_CMD_SETPOWER, NULL);
vnt_schedule_command(priv, WLAN_CMD_SETPOWER);
}
if (current_rate > RATE_11M)

View File

@ -29,7 +29,7 @@
* s_MgrMakeProbeRequest - Make ProbeRequest packet
* CommandTimer - Timer function to handle command
* vnt_cmd_complete - Command Complete function
* bScheduleCommand - Push Command and wait Command Scheduler to do
* vnt_schedule_command - Push Command and wait Command Scheduler to do
* vCommandTimer- Command call back functions
* vnt_cmd_timer_wait- Call back timer
* s_bClearBSSID_SCAN- Clear BSSID_SCAN cmd in CMD Queue
@ -184,7 +184,7 @@ void vnt_run_command(struct work_struct *work)
return;
}
int bScheduleCommand(struct vnt_private *priv, enum vnt_cmd command, u8 *item0)
int vnt_schedule_command(struct vnt_private *priv, enum vnt_cmd command)
{
if (priv->free_cmd_queue == 0)

View File

@ -61,7 +61,7 @@ struct vnt_private;
void vResetCommandTimer(struct vnt_private *);
int bScheduleCommand(struct vnt_private *, enum vnt_cmd, u8 *);
int vnt_schedule_command(struct vnt_private *, enum vnt_cmd);
void vnt_run_command(struct work_struct *work);