Commit d9fb23d7 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: removes function 'wilc_dealloc_network_info()'

This patch removes function 'wilc_dealloc_network_info()'.
Does not need this function which only free memory.
Therefore, this function is removed and changed directly with kfree.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a4104796
......@@ -353,28 +353,6 @@ s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info)
return 0;
}
s32 wilc_dealloc_network_info(tstrNetworkInfo *network_info)
{
s32 result = 0;
if (network_info) {
if (network_info->pu8IEs) {
kfree(network_info->pu8IEs);
network_info->pu8IEs = NULL;
} else {
result = -EFAULT;
}
kfree(network_info);
network_info = NULL;
} else {
result = -EFAULT;
}
return result;
}
s32 wilc_parse_assoc_resp_info(u8 *buffer, u32 buffer_len,
tstrConnectRespInfo **ret_connect_resp_info)
{
......
......@@ -121,7 +121,6 @@ typedef struct {
} tstrDisconnectNotifInfo;
s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info);
s32 wilc_dealloc_network_info(tstrNetworkInfo *network_info);
s32 wilc_parse_assoc_resp_info(u8 *buffer, u32 buffer_len,
tstrConnectRespInfo **ret_connect_resp_info);
s32 wilc_dealloc_assoc_resp_info(tstrConnectRespInfo *connect_resp_info);
......
......@@ -1410,8 +1410,8 @@ static s32 Handle_RcvdNtwrkInfo(struct wilc_vif *vif,
pstrRcvdNetworkInfo->buffer = NULL;
if (pstrNetworkInfo) {
wilc_dealloc_network_info(pstrNetworkInfo);
pstrNetworkInfo = NULL;
kfree(pstrNetworkInfo->pu8IEs);
kfree(pstrNetworkInfo);
}
return result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment