summaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2015-11-06 10:11:21 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-11-16 04:02:47 (GMT)
commit9062305b902d9daadf1ca34d32df40858d82a2c9 (patch)
tree2325aa071e4d2c821b089ef5ec6c0cf188683c12 /drivers/staging
parent7897bd00f6b5e69443ceffc7900faaafc23455b0 (diff)
downloadlinux-9062305b902d9daadf1ca34d32df40858d82a2c9.tar.xz
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: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/wilc1000/host_interface.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index db7060f..d5b7725 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -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));