projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
157edcc
)
staging: wilc1000: handle_set_mac_address: change data type of result
author
Chaehyun Lim
<
[email protected]
>
Tue, 16 Feb 2016 08:39:53 +0000
(17:39 +0900)
committer
Greg Kroah-Hartman
<
[email protected]
>
Sat, 20 Feb 2016 00:55:33 +0000
(16:55 -0800)
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 <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/wilc1000/host_interface.c
patch
|
blob
|
history
diff --git
a/drivers/staging/wilc1000/host_interface.c
b/drivers/staging/wilc1000/host_interface.c
index 98734968e8d3855d23f0498d638a913fc80972ea..00b464a76a5dfa62d48332e772bd047d2c18c986 100644
(file)
--- 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);