staging: vt6656: main_usb.c remove return from void functions
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
feab481076
commit
1beace3c8d
|
@ -381,8 +381,6 @@ static void vnt_free_tx_bufs(struct vnt_private *priv)
|
|||
|
||||
kfree(tx_context);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static void vnt_free_rx_bufs(struct vnt_private *priv)
|
||||
|
@ -407,8 +405,6 @@ static void vnt_free_rx_bufs(struct vnt_private *priv)
|
|||
|
||||
kfree(rcb);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static void usb_device_reset(struct vnt_private *priv)
|
||||
|
@ -419,14 +415,11 @@ static void usb_device_reset(struct vnt_private *priv)
|
|||
if (status)
|
||||
dev_warn(&priv->usb->dev,
|
||||
"usb_device_reset fail status=%d\n", status);
|
||||
return ;
|
||||
}
|
||||
|
||||
static void vnt_free_int_bufs(struct vnt_private *priv)
|
||||
{
|
||||
kfree(priv->int_buf.data_buf);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static bool vnt_alloc_bufs(struct vnt_private *priv)
|
||||
|
@ -596,8 +589,6 @@ static void vnt_stop(struct ieee80211_hw *hw)
|
|||
|
||||
usb_kill_urb(priv->interrupt_urb);
|
||||
usb_free_urb(priv->interrupt_urb);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static int vnt_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
|
||||
|
@ -663,8 +654,6 @@ static void vnt_remove_interface(struct ieee80211_hw *hw,
|
|||
|
||||
/* LED slow blink */
|
||||
vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_SLOW);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static int vnt_config(struct ieee80211_hw *hw, u32 changed)
|
||||
|
@ -844,8 +833,6 @@ static void vnt_configure(struct ieee80211_hw *hw,
|
|||
vnt_control_out_u8(priv, MESSAGE_REQUEST_MACREG, MAC_REG_RCR, rx_mode);
|
||||
|
||||
dev_dbg(&priv->usb->dev, "rx mode out= %x\n", rx_mode);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static int vnt_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
|
||||
|
|
Loading…
Reference in New Issue