staging: vt6656: main_usb.c remove return from void functions
authorMalcolm Priestley <tvboxspy@gmail.com>
Fri, 25 Jul 2014 19:51:53 +0000 (20:51 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 27 Jul 2014 16:03:43 +0000 (09:03 -0700)
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/main_usb.c

index 87e89d7161ec5bac900bd6f76cc7539b09d47b0e..422fcbabafac8e2178e86353a16b13940229d099 100644 (file)
@@ -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,