iwlwifi: remove antenna from mod params struct
It doesn't even exist as a module parameter, so just remove the item from the struct. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
This commit is contained in:
parent
0479c19d9f
commit
dec63ce62b
|
@ -118,7 +118,6 @@ extern struct iwl_mod_params iwlagn_mod_params;
|
||||||
* @disable_11n: disable 11n capabilities, default = 0,
|
* @disable_11n: disable 11n capabilities, default = 0,
|
||||||
* use IWL_DISABLE_HT_* constants
|
* use IWL_DISABLE_HT_* constants
|
||||||
* @amsdu_size_8K: enable 8K amsdu size, default = 1
|
* @amsdu_size_8K: enable 8K amsdu size, default = 1
|
||||||
* @antenna: both antennas (use diversity), default = 0
|
|
||||||
* @restart_fw: restart firmware, default = 1
|
* @restart_fw: restart firmware, default = 1
|
||||||
* @plcp_check: enable plcp health check, default = true
|
* @plcp_check: enable plcp health check, default = true
|
||||||
* @wd_disable: enable stuck queue check, default = 0
|
* @wd_disable: enable stuck queue check, default = 0
|
||||||
|
@ -135,7 +134,6 @@ struct iwl_mod_params {
|
||||||
int sw_crypto;
|
int sw_crypto;
|
||||||
unsigned int disable_11n;
|
unsigned int disable_11n;
|
||||||
int amsdu_size_8K;
|
int amsdu_size_8K;
|
||||||
int antenna;
|
|
||||||
int restart_fw;
|
int restart_fw;
|
||||||
bool plcp_check;
|
bool plcp_check;
|
||||||
int wd_disable;
|
int wd_disable;
|
||||||
|
|
Loading…
Reference in New Issue