qcacld-3.0: Replace typedef hdd_pmf_stats_t

The Linux Coding Style enumerates a few special cases where typedefs
are useful, but stresses "NEVER EVER use a typedef unless you can
clearly match one of those rules." The hdd_pmf_stats_t typedef does
not meet any of those criteria, so replace it with a well named
struct.

Change-Id: I6e1f205f36ca35d58f5f8846d95d76976266a8bd
CRs-Fixed: 2093258
此提交包含在:
Jeff Johnson
2017-08-15 13:52:08 -07:00
提交者 snandini
父節點 ca50b456ab
當前提交 a49c0ac465

查看文件

@@ -425,10 +425,15 @@ typedef struct hdd_tx_rx_stats {
} hdd_tx_rx_stats_t;
#ifdef WLAN_FEATURE_11W
typedef struct hdd_pmf_stats_s {
/**
* struct hdd_pmf_stats - Protected Management Frame statistics
* @numUnprotDeauthRx: Number of unprotected deauth frames received
* @numUnprotDisassocRx: Number of unprotected disassoc frames received
*/
struct hdd_pmf_stats {
uint8_t numUnprotDeauthRx;
uint8_t numUnprotDisassocRx;
} hdd_pmf_stats_t;
};
#endif
/**
@@ -447,7 +452,7 @@ struct hdd_stats {
struct csr_per_chain_rssi_stats_info per_chain_rssi_stats;
hdd_tx_rx_stats_t hddTxRxStats;
#ifdef WLAN_FEATURE_11W
hdd_pmf_stats_t hddPmfStats;
struct hdd_pmf_stats hddPmfStats;
#endif
};