qcacld-3.0: Rename HDD variable modProfileFields
The Linux Coding Style frowns upon mixed-case names so rename HDD local variable modProfileFields to be compliant. Change-Id: I2c314221cd41c1730ce16a8a7d4b20f99d562c91 CRs-Fixed: 2408526
This commit is contained in:
@@ -4281,7 +4281,7 @@ static int drv_cmd_fast_reassoc(struct hdd_adapter *adapter,
|
|||||||
uint8_t channel = 0;
|
uint8_t channel = 0;
|
||||||
tSirMacAddr bssid;
|
tSirMacAddr bssid;
|
||||||
uint32_t roamId = INVALID_ROAM_ID;
|
uint32_t roamId = INVALID_ROAM_ID;
|
||||||
tCsrRoamModifyProfileFields modProfileFields;
|
tCsrRoamModifyProfileFields mod_fields;
|
||||||
tCsrHandoffRequest handoffInfo;
|
tCsrHandoffRequest handoffInfo;
|
||||||
struct hdd_station_ctx *sta_ctx;
|
struct hdd_station_ctx *sta_ctx;
|
||||||
mac_handle_t mac_handle;
|
mac_handle_t mac_handle;
|
||||||
@@ -4325,9 +4325,9 @@ static int drv_cmd_fast_reassoc(struct hdd_adapter *adapter,
|
|||||||
} else {
|
} else {
|
||||||
sme_get_modify_profile_fields(mac_handle,
|
sme_get_modify_profile_fields(mac_handle,
|
||||||
adapter->vdev_id,
|
adapter->vdev_id,
|
||||||
&modProfileFields);
|
&mod_fields);
|
||||||
sme_roam_reassoc(mac_handle, adapter->vdev_id,
|
sme_roam_reassoc(mac_handle, adapter->vdev_id,
|
||||||
NULL, modProfileFields, &roamId, 1);
|
NULL, mod_fields, &roamId, 1);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -7488,10 +7488,10 @@ static int __iw_setnone_getnone(struct net_device *dev,
|
|||||||
uint32_t roamId = INVALID_ROAM_ID;
|
uint32_t roamId = INVALID_ROAM_ID;
|
||||||
uint8_t operating_ch =
|
uint8_t operating_ch =
|
||||||
adapter->session.station.conn_info.operationChannel;
|
adapter->session.station.conn_info.operationChannel;
|
||||||
tCsrRoamModifyProfileFields modProfileFields;
|
tCsrRoamModifyProfileFields mod_fields;
|
||||||
|
|
||||||
sme_get_modify_profile_fields(mac_handle, adapter->vdev_id,
|
sme_get_modify_profile_fields(mac_handle, adapter->vdev_id,
|
||||||
&modProfileFields);
|
&mod_fields);
|
||||||
if (roaming_offload_enabled(hdd_ctx)) {
|
if (roaming_offload_enabled(hdd_ctx)) {
|
||||||
qdf_mem_copy(bssid,
|
qdf_mem_copy(bssid,
|
||||||
&adapter->session.station.conn_info.bssId,
|
&adapter->session.station.conn_info.bssId,
|
||||||
@@ -7500,7 +7500,7 @@ static int __iw_setnone_getnone(struct net_device *dev,
|
|||||||
bssid, operating_ch);
|
bssid, operating_ch);
|
||||||
} else {
|
} else {
|
||||||
sme_roam_reassoc(mac_handle, adapter->vdev_id,
|
sme_roam_reassoc(mac_handle, adapter->vdev_id,
|
||||||
NULL, modProfileFields, &roamId, 1);
|
NULL, mod_fields, &roamId, 1);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user