diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h b/drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h index fea817d6a9be..ab12aaa43034 100644 --- a/drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h +++ b/drivers/net/wireless/iwlwifi/mvm/fw-api-coex.h | |||
@@ -394,6 +394,12 @@ enum iwl_bt_ci_compliance { | |||
394 | BT_CI_COMPLIANCE_BOTH = 3, | 394 | BT_CI_COMPLIANCE_BOTH = 3, |
395 | }; /* BT_COEX_CI_COMPLIENCE_E_VER_1 */ | 395 | }; /* BT_COEX_CI_COMPLIENCE_E_VER_1 */ |
396 | 396 | ||
397 | #define IWL_COEX_IS_TTC_ON(_ttc_rrc_status, _phy_id) \ | ||
398 | (_ttc_rrc_status & BIT(_phy_id)) | ||
399 | |||
400 | #define IWL_COEX_IS_RRC_ON(_ttc_rrc_status, _phy_id) \ | ||
401 | ((_ttc_rrc_status >> 4) & BIT(_phy_id)) | ||
402 | |||
397 | /** | 403 | /** |
398 | * struct iwl_bt_coex_profile_notif - notification about BT coex | 404 | * struct iwl_bt_coex_profile_notif - notification about BT coex |
399 | * @mbox_msg: message from BT to WiFi | 405 | * @mbox_msg: message from BT to WiFi |