diff options
author | Chaehyun Lim <chaehyun.lim@gmail.com> | 2016-06-13 08:28:11 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-25 14:38:49 -0700 |
commit | eebb4df136a8b60b2fddda3886aaf20c8f3a644f (patch) | |
tree | 22a302b9c94bb3064881ed2d406a38031333f9a3 /drivers/staging/wilc1000 | |
parent | fbc976c1eb540ae06b4201dd9707ddace77d15eb (diff) | |
download | linux-eebb4df136a8b60b2fddda3886aaf20c8f3a644f.tar.bz2 |
staging: wilc1000: change data type of result in handle_cfg_param
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index aeb355e81d64..0220045e3af8 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -420,7 +420,7 @@ static void handle_get_mac_address(struct wilc_vif *vif, static void handle_cfg_param(struct wilc_vif *vif, struct cfg_param_attr *cfg_param_attr) { - s32 result = 0; + int result = 0; struct wid wid_list[32]; struct host_if_drv *hif_drv = vif->hif_drv; int i = 0; |