mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 17:03:47 -04:00
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
157edcca33
commit
9470edcded
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user