diff options
author | Chaehyun Lim <chaehyun.lim@gmail.com> | 2016-02-16 08:39:54 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-20 00:55:33 (GMT) |
commit | 47b89ad64526d18baf2ba92e908d36f6f5c991bb (patch) | |
tree | 48973f0025fdc978c93066e4fab0c37c2227d09a | |
parent | 9470edcded053fe7f70cb954bcde6980413fccc9 (diff) | |
download | linux-47b89ad64526d18baf2ba92e908d36f6f5c991bb.tar.xz |
staging: wilc1000: handle_set_mac_address: rename result
This patch renames result to ret that is used to get return value from
wilc_send_config_pkt. It will be changed until all handle_*() function
has same variable name as ret.
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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 00b464a..f946e00 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) { - int result = 0; + int ret = 0; struct wid wid; u8 *mac_buf = kmemdup(set_mac_addr->mac_addr, ETH_ALEN, GFP_KERNEL); @@ -439,9 +439,9 @@ static void handle_set_mac_address(struct wilc_vif *vif, wid.val = mac_buf; wid.size = ETH_ALEN; - result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1, - wilc_get_vif_idx(vif)); - if (result) + ret = wilc_send_config_pkt(vif, SET_CFG, &wid, 1, + wilc_get_vif_idx(vif)); + if (ret) PRINT_ER("Failed to set mac address\n"); kfree(mac_buf); |