Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57981a65 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: Drop u8 pointer and rename bScheduleCommand.



Rename to vnt_schedule_command removing unused u8 pointer.

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 592365ae
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -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
		}
+1 −1
Original line number Diff line number Diff line
@@ -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;

+1 −1
Original line number Diff line number Diff line
@@ -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)
+2 −2
Original line number Diff line number Diff line
@@ -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)
+1 −1
Original line number Diff line number Diff line
@@ -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);