staging: wilc1000: fix return type of wilc_send_config_pkt
authorChaehyun Lim <chaehyun.lim@gmail.com>
Thu, 11 Feb 2016 04:46:22 +0000 (13:46 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:31:50 +0000 (19:31 -0800)
wilc_send_config_pkt is returned 0 or -ETIMEDOUT according to return
value of wilc_wlan_cfg_set or wilc_wlan_cfg_set.
It is better to use int type to represent linux standard error code.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wlan.c
drivers/staging/wilc1000/wilc_wlan.h

index 98b21d4927207d4a9692f17583ad24f7da6c7fae..2bc2970d7576048685105dad49e717fb926197c5 100644 (file)
@@ -1349,10 +1349,11 @@ int wilc_wlan_cfg_get_val(u32 wid, u8 *buffer, u32 buffer_size)
        return ret;
 }
 
-s32 wilc_send_config_pkt(struct wilc_vif *vif, u8 mode, struct wid *wids,
+int wilc_send_config_pkt(struct wilc_vif *vif, u8 mode, struct wid *wids,
                         u32 count, u32 drv)
 {
-       s32 counter = 0, ret = 0;
+       s32 counter = 0;
+       int ret = 0;
 
        if (mode == GET_CFG) {
                for (counter = 0; counter < count; counter++) {
index d362fa8512cfd4b746b9394db9fa930135f0e676..06d02abd49a4aa6474a6e7845f037faedf54058a 100644 (file)
@@ -301,6 +301,6 @@ void host_sleep_notify(struct wilc *wilc);
 extern bool wilc_enable_ps;
 void chip_allow_sleep(struct wilc *wilc);
 void chip_wakeup(struct wilc *wilc);
-s32 wilc_send_config_pkt(struct wilc_vif *vif, u8 mode, struct wid *wids,
+int wilc_send_config_pkt(struct wilc_vif *vif, u8 mode, struct wid *wids,
                         u32 count, u32 drv);
 #endif