qcacld-3.0: Skip chainmask programming if antenna sharing enabled
Skip chainmask programming if antenna sharing enabled. Change-Id: If4c765ed35b249b8a08660557a20bec2c77579f7 CRs-Fixed: 2186904
Tento commit je obsažen v:
@@ -4143,6 +4143,11 @@ static int hdd_configure_chain_mask(struct hdd_adapter *adapter)
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (hdd_ctx->lte_coex_ant_share) {
|
||||
hdd_info("lte ant sharing enabled. skip chainmask programming");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (hdd_ctx->config->txchainmask1x1) {
|
||||
ret_val = sme_cli_set_command(adapter->session_id,
|
||||
WMI_PDEV_PARAM_TX_CHAIN_MASK,
|
||||
@@ -4161,11 +4166,6 @@ static int hdd_configure_chain_mask(struct hdd_adapter *adapter)
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (hdd_ctx->lte_coex_ant_share) {
|
||||
hdd_info("lte ant sharing enabled. skip per band chain mask");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (hdd_ctx->config->txchainmask1x1 ||
|
||||
hdd_ctx->config->rxchainmask1x1) {
|
||||
hdd_info("band agnostic tx/rx chain mask set. skip per band chain mask");
|
||||
|
Odkázat v novém úkolu
Zablokovat Uživatele