summaryrefslogtreecommitdiff
path: root/drivers/staging/wilc1000
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2016-04-06 23:10:42 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-29 05:03:39 (GMT)
commit197b053d9c83999d6b93b01bb355e3cac4474779 (patch)
tree96407eccd4502409d7bb26ebfb9ec777d14638c7 /drivers/staging/wilc1000
parentb093d4fe608c5f7d795d0c516baff495f9651525 (diff)
downloadlinux-197b053d9c83999d6b93b01bb355e3cac4474779.tar.xz
staging: wilc1000: change data type of result in handle_set_operation_mode
This patch changes data type of result variable from s32 to int. result is used to get return value from wilc_send_config_pkt that has return type of int. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000')
-rw-r--r--drivers/staging/wilc1000/host_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 81d2105..4b891c2 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -331,7 +331,7 @@ static void handle_set_wfi_drv_handler(struct wilc_vif *vif,
static void handle_set_operation_mode(struct wilc_vif *vif,
struct op_mode *hif_op_mode)
{
- s32 result = 0;
+ int result = 0;
struct wid wid;
wid.id = (u16)WID_SET_OPERATION_MODE;