diff options
author | Chaehyun Lim <chaehyun.lim@gmail.com> | 2015-10-27 19:19:19 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-28 19:50:45 -0400 |
commit | 641c20a63508cfefef52759dc175a113d7157caa (patch) | |
tree | 6eed41c7bc1cc763a656084be8a8dc9213566bfb | |
parent | cf491d935a2a77203d9e215a67b7924964a3f618 (diff) |
staging: wilc1000: fix return type of host_int_add_wep_key_bss_ap
This patch changes return type of host_int_add_wep_key_bss_ap from s32
to int. The result variable gets return value from wilc_mq_send that has
return type of int. It should be changed return type of this function as
well as data type of result variable.
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 4 | ||||
-rw-r--r-- | drivers/staging/wilc1000/host_interface.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 28fef2525086..a29a3637c383 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c | |||
@@ -3139,14 +3139,14 @@ int host_int_add_wep_key_bss_sta(struct host_if_drv *hif_drv, | |||
3139 | return result; | 3139 | return result; |
3140 | } | 3140 | } |
3141 | 3141 | ||
3142 | s32 host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv, | 3142 | int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv, |
3143 | const u8 *pu8WepKey, | 3143 | const u8 *pu8WepKey, |
3144 | u8 u8WepKeylen, | 3144 | u8 u8WepKeylen, |
3145 | u8 u8Keyidx, | 3145 | u8 u8Keyidx, |
3146 | u8 u8mode, | 3146 | u8 u8mode, |
3147 | enum AUTHTYPE tenuAuth_type) | 3147 | enum AUTHTYPE tenuAuth_type) |
3148 | { | 3148 | { |
3149 | s32 result = 0; | 3149 | int result = 0; |
3150 | struct host_if_msg msg; | 3150 | struct host_if_msg msg; |
3151 | u8 i; | 3151 | u8 i; |
3152 | 3152 | ||
diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 469e57913d17..11d44bcb89f3 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h | |||
@@ -419,7 +419,7 @@ int host_int_add_wep_key_bss_sta(struct host_if_drv *hif_drv, | |||
419 | * @date 28 Feb 2013 | 419 | * @date 28 Feb 2013 |
420 | * @version 1.0 | 420 | * @version 1.0 |
421 | */ | 421 | */ |
422 | s32 host_int_add_wep_key_bss_ap(struct host_if_drv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type); | 422 | int host_int_add_wep_key_bss_ap(struct host_if_drv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type); |
423 | 423 | ||
424 | /** | 424 | /** |
425 | * @brief adds ptk Key | 425 | * @brief adds ptk Key |