staging: wilc1000: change return type to 'void' for wilc_deinit_host_int()
authorAjay Singh <ajay.kathat@microchip.com>
Tue, 25 Sep 2018 06:23:19 +0000 (11:53 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Sep 2018 18:53:56 +0000 (20:53 +0200)
Cleanup patch to use 'void' return type for wilc_deinit_host_int(),
as its return value is not used in caller.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
drivers/staging/wilc1000/wilc_wfi_cfgoperations.h

index 37c26d465bcf4812dcff911d6c466bbd5246ddb2..02a884672d7a7d11ee4e7a6c9aa44c0659c6a700 100644 (file)
@@ -2175,7 +2175,7 @@ int wilc_init_host_int(struct net_device *net)
        return ret;
 }
 
-int wilc_deinit_host_int(struct net_device *net)
+void wilc_deinit_host_int(struct net_device *net)
 {
        int ret;
        struct wilc_priv *priv = wdev_priv(net->ieee80211_ptr);
@@ -2192,8 +2192,6 @@ int wilc_deinit_host_int(struct net_device *net)
 
        if (ret)
                netdev_err(net, "Error while deinitializing host interface\n");
-
-       return ret;
 }
 
 void wilc_free_wiphy(struct net_device *net)
index be412b65926c0071e136e8c0b732d96f0484db83..1858f5648476cf02814aad4c9c1be2cb5df7f171 100644 (file)
@@ -11,7 +11,7 @@
 struct wireless_dev *wilc_create_wiphy(struct net_device *net,
                                       struct device *dev);
 void wilc_free_wiphy(struct net_device *net);
-int wilc_deinit_host_int(struct net_device *net);
+void wilc_deinit_host_int(struct net_device *net);
 int wilc_init_host_int(struct net_device *net);
 void wilc_wfi_monitor_rx(u8 *buff, u32 size);
 int wilc_wfi_deinit_mon_interface(void);