diff options
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/iwl-modparams.h')
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/iwl-modparams.h | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-modparams.h b/drivers/net/wireless/intel/iwlwifi/iwl-modparams.h index a7dd8a8cddf9..97072cf75bca 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-modparams.h +++ b/drivers/net/wireless/intel/iwlwifi/iwl-modparams.h @@ -6,6 +6,7 @@   * GPL LICENSE SUMMARY   *   * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved. + * Copyright(c) 2018 Intel Corporation   *   * 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 @@ -17,9 +18,7 @@   * General Public License for more details.   *   * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, - * USA + * along with this program;   *   * The full GNU General Public License is included in this distribution   * in the file called COPYING. @@ -31,6 +30,7 @@   * BSD LICENSE   *   * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. + * Copyright(c) 2018 Intel Corporation   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -90,6 +90,8 @@ enum iwl_amsdu_size {  	IWL_AMSDU_4K = 1,  	IWL_AMSDU_8K = 2,  	IWL_AMSDU_12K = 3, +	/* Add 2K at the end to avoid breaking current API */ +	IWL_AMSDU_2K = 4,  };  enum iwl_uapsd_disable { @@ -144,6 +146,10 @@ struct iwl_mod_params {  	bool lar_disable;  	bool fw_monitor;  	bool disable_11ac; +	/** +	 * @disable_11ax: disable HE capabilities, default = false +	 */ +	bool disable_11ax;  	bool remove_when_gone;  }; |