diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h')
| -rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h | 15 | 
1 files changed, 13 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h b/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h index 98b1feb43d3..c405cda1025 100644 --- a/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h +++ b/drivers/net/wireless/iwlwifi/mvm/fw-api-mac.h @@ -5,7 +5,7 @@   *   * GPL LICENSE SUMMARY   * - * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved. + * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.   *   * This program is free software; you can redistribute it and/or modify   * it under the terms of version 2 of the GNU General Public License as @@ -30,7 +30,7 @@   *   * BSD LICENSE   * - * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved. + * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -170,12 +170,14 @@ struct iwl_mac_data_ap {   * @beacon_tsf: beacon transmit time in TSF   * @bi: beacon interval in TU   * @bi_reciprocal: 2^32 / bi + * @beacon_template: beacon template ID   */  struct iwl_mac_data_ibss {  	__le32 beacon_time;  	__le64 beacon_tsf;  	__le32 bi;  	__le32 bi_reciprocal; +	__le32 beacon_template;  } __packed; /* IBSS_MAC_DATA_API_S_VER_1 */  /** @@ -372,4 +374,13 @@ static inline u32 iwl_mvm_reciprocal(u32 v)  	return 0xFFFFFFFF / v;  } +#define IWL_NONQOS_SEQ_GET	0x1 +#define IWL_NONQOS_SEQ_SET	0x2 +struct iwl_nonqos_seq_query_cmd { +	__le32 get_set_flag; +	__le32 mac_id_n_color; +	__le16 value; +	__le16 reserved; +} __packed; /* NON_QOS_TX_COUNTER_GET_SET_API_S_VER_1 */ +  #endif /* __fw_api_mac_h__ */  | 
