@@ -525,17 +525,16 @@ struct ath12k {
u32 ht_cap_info;
u32 vht_cap_info;
struct ath12k_he ar_he;
- bool supports_6ghz;
struct {
struct completion started;
struct completion completed;
struct completion on_channel;
struct delayed_work timeout;
enum ath12k_scan_state state;
- bool is_roc;
int vdev_id;
int roc_freq;
- bool roc_notify;
+ bool is_roc:1;
+ bool roc_notify:1;
} scan;
struct {
@@ -615,7 +614,6 @@ struct ath12k {
* However there are deviations from this rule. This flag is used to
* avoid reporting garbage data.
*/
- bool ch_info_can_report_survey;
struct survey_info survey[ATH12K_NUM_CHANS];
struct completion bss_survey_done;
@@ -626,7 +624,6 @@ struct ath12k {
struct ath12k_wow wow;
struct completion target_suspend;
- bool target_suspend_ack;
struct ath12k_per_peer_tx_stats peer_tx_stats;
struct list_head ppdu_stats_info;
u32 ppdu_stat_list_depth;
@@ -638,16 +635,19 @@ struct ath12k {
struct ath12k_debug debug;
#endif
- bool dfs_block_radar_events;
- bool monitor_conf_enabled;
- bool monitor_vdev_created;
- bool monitor_started;
int monitor_vdev_id;
u32 freq_low;
u32 freq_high;
- bool nlo_enabled;
+ bool supports_6ghz:1;
+ bool ch_info_can_report_survey:1;
+ bool target_suspend_ack:1;
+ bool dfs_block_radar_events:1;
+ bool monitor_conf_enabled:1;
+ bool monitor_vdev_created:1;
+ bool monitor_started:1;
+ bool nlo_enabled:1;
};
struct ath12k_hw {