qcacmn: Rename sme_session_id in struct add_ts_param (1/2)

The sme_session_id field in struct add_ts_param is poorly named since
that is legacy MCL nomenclature, so there is a desire to rename it to
vdev_id to align with the converged nomenclature. As the first phase
of renaming introduce a union so that both the old and new name can be
used by legacy projects, but otherwise only use the new name within
the qcacmn project.

Change-Id: I93743c3b1e3180589a3af83ed9e51d8dc95324d9
CRs-Fixed: 2384156
This commit is contained in:
Jeff Johnson
2019-01-20 14:22:42 -08:00
committed by nshrivas
parent 721bd5f339
commit 7929ba9084
3 changed files with 8 additions and 5 deletions

View File

@@ -2334,7 +2334,7 @@ struct mac_tspec_ie {
* @sessionId: session id
* @tsm_interval: TSM interval period passed from UMAC to WMI
* @setRICparams: RIC parameters
* @sme_session_id: sme session id
* @vdev_id: vdev id
*/
struct add_ts_param {
uint16_t staIdx;
@@ -2348,7 +2348,10 @@ struct add_ts_param {
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
uint8_t setRICparams;
#endif /* WLAN_FEATURE_ROAM_OFFLOAD */
union {
uint8_t sme_session_id;
uint8_t vdev_id;
};
};
/**