staging: wilc1000: remove rates variable in wilc_edit_station
Instead of using rates variable, it is used as add_sta_info->rates directly. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1ae82d1ab0
commit
e38d850f70
@ -4372,12 +4372,11 @@ int wilc_edit_station(struct wilc_vif *vif,
|
|||||||
|
|
||||||
memcpy(add_sta_info, sta_param, sizeof(struct add_sta_param));
|
memcpy(add_sta_info, sta_param, sizeof(struct add_sta_param));
|
||||||
if (add_sta_info->rates_len > 0) {
|
if (add_sta_info->rates_len > 0) {
|
||||||
u8 *rates = kmemdup(sta_param->rates,
|
add_sta_info->rates = kmemdup(sta_param->rates,
|
||||||
add_sta_info->rates_len,
|
add_sta_info->rates_len,
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!rates)
|
if (!add_sta_info->rates)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
add_sta_info->rates = rates;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
||||||
|
Loading…
Reference in New Issue
Block a user