|
@@ -4540,7 +4540,7 @@ int host_int_del_beacon(struct host_if_drv *hif_drv)
|
|
}
|
|
}
|
|
|
|
|
|
int host_int_add_station(struct host_if_drv *hif_drv,
|
|
int host_int_add_station(struct host_if_drv *hif_drv,
|
|
- struct add_sta_param *pstrStaParams)
|
|
|
|
|
|
+ struct add_sta_param *sta_param)
|
|
{
|
|
{
|
|
int result = 0;
|
|
int result = 0;
|
|
struct host_if_msg msg;
|
|
struct host_if_msg msg;
|
|
@@ -4558,14 +4558,14 @@ int host_int_add_station(struct host_if_drv *hif_drv,
|
|
msg.id = HOST_IF_MSG_ADD_STATION;
|
|
msg.id = HOST_IF_MSG_ADD_STATION;
|
|
msg.drv = hif_drv;
|
|
msg.drv = hif_drv;
|
|
|
|
|
|
- memcpy(pstrAddStationMsg, pstrStaParams, sizeof(struct add_sta_param));
|
|
|
|
|
|
+ memcpy(pstrAddStationMsg, sta_param, sizeof(struct add_sta_param));
|
|
if (pstrAddStationMsg->rates_len > 0) {
|
|
if (pstrAddStationMsg->rates_len > 0) {
|
|
u8 *rates = kmalloc(pstrAddStationMsg->rates_len, GFP_KERNEL);
|
|
u8 *rates = kmalloc(pstrAddStationMsg->rates_len, GFP_KERNEL);
|
|
|
|
|
|
if (!rates)
|
|
if (!rates)
|
|
return -ENOMEM;
|
|
return -ENOMEM;
|
|
|
|
|
|
- memcpy(rates, pstrStaParams->rates,
|
|
|
|
|
|
+ memcpy(rates, sta_param->rates,
|
|
pstrAddStationMsg->rates_len);
|
|
pstrAddStationMsg->rates_len);
|
|
pstrAddStationMsg->rates = rates;
|
|
pstrAddStationMsg->rates = rates;
|
|
}
|
|
}
|