summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2016-02-16 08:39:53 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-20 00:55:33 (GMT)
commit9470edcded053fe7f70cb954bcde6980413fccc9 (patch)
treef06694431887b1c112f63bacd424ebd785457874
parent157edcca3321f058600fd7b23b7151021ad0b209 (diff)
downloadlinux-9470edcded053fe7f70cb954bcde6980413fccc9.tar.xz
staging: wilc1000: handle_set_mac_address: change data type of result
result variable gets value from wilc_send_config_pkt that has return value of int. This patch changes data type of result variable to int. 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.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 9873496..00b464a 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -427,7 +427,7 @@ static s32 handle_get_ip_address(struct wilc_vif *vif, u8 idx)
static void handle_set_mac_address(struct wilc_vif *vif,
struct set_mac_addr *set_mac_addr)
{
- s32 result = 0;
+ int result = 0;
struct wid wid;
u8 *mac_buf = kmemdup(set_mac_addr->mac_addr, ETH_ALEN, GFP_KERNEL);