File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
drivers/net/wireless/intel/iwlwifi Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,9 @@ struct iwl_nvm_access_complete_cmd {
269
269
__le32 reserved ;
270
270
} __packed ; /* NVM_ACCESS_COMPLETE_CMD_API_S_VER_1 */
271
271
272
+ #define IWL_MCC_US 0x5553
273
+ #define IWL_MCC_CANADA 0x4341
274
+
272
275
/**
273
276
* struct iwl_mcc_update_cmd - Request the device to update geographic
274
277
* regulatory profile according to the given MCC (Mobile Country Code).
Original file line number Diff line number Diff line change 27
27
#define MVM_UCODE_ALIVE_TIMEOUT (2 * HZ)
28
28
#define MVM_UCODE_CALIB_TIMEOUT (2 * HZ)
29
29
30
- #define IWL_TAS_US_MCC 0x5553
31
- #define IWL_TAS_CANADA_MCC 0x4341
32
-
33
30
#define IWL_UATS_VLP_AP_SUPPORTED BIT(29)
34
31
#define IWL_UATS_AFC_AP_SUPPORTED BIT(30)
35
32
@@ -1234,10 +1231,10 @@ static void iwl_mvm_tas_init(struct iwl_mvm *mvm)
1234
1231
dmi_get_system_info (DMI_SYS_VENDOR ));
1235
1232
if ((!iwl_mvm_add_to_tas_block_list (cmd .v4 .block_list_array ,
1236
1233
& cmd .v4 .block_list_size ,
1237
- IWL_TAS_US_MCC )) ||
1234
+ IWL_MCC_US )) ||
1238
1235
(!iwl_mvm_add_to_tas_block_list (cmd .v4 .block_list_array ,
1239
1236
& cmd .v4 .block_list_size ,
1240
- IWL_TAS_CANADA_MCC ))) {
1237
+ IWL_MCC_CANADA ))) {
1241
1238
IWL_DEBUG_RADIO (mvm ,
1242
1239
"Unable to add US/Canada to TAS block list, disabling TAS\n" );
1243
1240
return ;
You can’t perform that action at this time.
0 commit comments