qcacld-3.0: Fix minor diag logging issues

Update the diag interface files with minor fixes to include
qdf_packed attribute for missing structure and fix the enum
wlan_roam_failure_reason_code ordering to be in sync with WMI

Change-Id: I3b4f6296e7d80c9d27e4f66dd2092c0110aaa766
CRs-Fixed: 3659386
This commit is contained in:
Pragaspathi Thilagaraj
2023-11-08 14:45:26 +05:30
committed by Ravindra Konda
부모 f4a03c5828
커밋 46d9d017f1
2개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@@ -367,6 +367,7 @@ struct wlan_diag_sta_info {
* @vdev_id: vdev id associated with the link
* @tid_ul: TID-to-link mapping information on the uplink
* @tid_dl: TID-to-link mapping information on the downlink
* @status: MLO setup status. 0 - Success, 1 - failure
* @link_addr: Link address of the link.
*/
struct wlan_diag_mlo_cmn_info {
@@ -377,7 +378,7 @@ struct wlan_diag_mlo_cmn_info {
uint8_t tid_dl;
uint8_t status;
uint8_t link_addr[QDF_MAC_ADDR_SIZE];
};
} qdf_packed;
#define DIAG_MLO_SETUP_VERSION 1
#define DIAG_MLO_SETUP_VERSION_V2 2