qcacmn: Refine struct add_ts_param

Many of the fields in struct add_ts_param use camelCase which is
frowned upon by the Linux coding standard, so rename them to be
compliant.

Note that change I829ad0abb864f0a05047894bab9977d8529074dc
("qcacld-3.0: Align with the refined struct add_ts_param") is
interdependent with this change.

Change-Id: I421b670b86a7e1cecbe5a2686efefbbb6c455267
CRs-Fixed: 2433927
Dieser Commit ist enthalten in:
Jeff Johnson
2019-01-20 09:04:21 -08:00
committet von nshrivas
Ursprung 41696b3a10
Commit cb4f428edc
2 geänderte Dateien mit 13 neuen und 13 gelöschten Zeilen

Datei anzeigen

@@ -2397,28 +2397,28 @@ struct mac_tspec_ie {
/**
* struct add_ts_param - ADDTS related parameters
* @staIdx: station index
* @tspecIdx: TSPEC handler uniquely identifying a TSPEC for a STA in a BSS
* @tspec: tspec value
* @status: CDF status
* @sessionId: session id
* @tsm_interval: TSM interval period passed from UMAC to WMI
* @setRICparams: RIC parameters
* @vdev_id: vdev id
* @sta_idx: station index
* @tspec_idx: TSPEC handle uniquely identifying a TSPEC for a STA in a BSS
* @tspec: tspec value
* @status: QDF status
* @pe_session_id: protocol engine session id
* @tsm_interval: TSM interval period passed from UMAC to WMI
* @set_ric_params: Should RIC parameters be set?
*/
struct add_ts_param {
uint16_t staIdx;
uint16_t tspecIdx;
uint8_t vdev_id;
uint16_t sta_idx;
uint16_t tspec_idx;
struct mac_tspec_ie tspec;
QDF_STATUS status;
uint8_t sessionId;
uint8_t pe_session_id;
#ifdef FEATURE_WLAN_ESE
uint16_t tsm_interval;
#endif /* FEATURE_WLAN_ESE */
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
uint8_t setRICparams;
bool set_ric_params;
#endif /* WLAN_FEATURE_ROAM_OFFLOAD */
uint8_t vdev_id;
};
/**