Commit 9062305b authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: remove rates variable in host_int_add_station

Instead of using rates variable, it is used as add_sta_info->rates
directly.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7897bd00
......@@ -4560,12 +4560,11 @@ int host_int_add_station(struct host_if_drv *hif_drv,
memcpy(add_sta_info, sta_param, sizeof(struct add_sta_param));
if (add_sta_info->rates_len > 0) {
u8 *rates = kmemdup(sta_param->rates,
add_sta_info->rates_len,
GFP_KERNEL);
if (!rates)
add_sta_info->rates = kmemdup(sta_param->rates,
add_sta_info->rates_len,
GFP_KERNEL);
if (!add_sta_info->rates)
return -ENOMEM;
add_sta_info->rates = rates;
}
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
......
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