Remove unneeded code in order to make clear
that the function returns 0(success) in all cases.
Done using returnvar.cocci script.
Signed-off-by: Georgiana Rodica Chelu <georgiana.chelu93@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 {
        struct ks_wlan_private *priv = netdev_priv(dev);
 
-       int ret = 0;
        priv->device_open_status = 0;
        del_timer_sync(&update_phyinfo_timer);
 
        if (netif_running(dev))
                netif_stop_queue(dev);
 
-       return ret;
+       return 0;
 }