From 48f27fe04a855955a5ca2fd226a737ba348c38d1 Mon Sep 17 00:00:00 2001 From: Dustin Brown Date: Tue, 9 Oct 2018 12:47:57 -0700 Subject: [PATCH] qcacld-3.0: Fix misleading indent (sme) Change I8cd30439d7ac3de7b550aa5042353cf30e04cbda recently introduced misleading indentation in sme_update_tx_bfee_nstsi(). Not only does this cause a build failure for some configurations, but is also dangerously confusing for future readers. Remove the misleading indentation in sme_update_tx_bfee_nstsi(). Change-Id: Ia971c414b433eeaff51eb4c65d3d2f56c49617b1 CRs-Fixed: 2330256 --- core/sme/src/common/sme_api.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/sme/src/common/sme_api.c b/core/sme/src/common/sme_api.c index 4a491f4474..2296ceee63 100644 --- a/core/sme/src/common/sme_api.c +++ b/core/sme/src/common/sme_api.c @@ -12803,8 +12803,9 @@ int sme_update_tx_bfee_nsts(mac_handle_t hal, uint8_t session_id, nsts_set_val = usr_cfg_val; else nsts_set_val = nsts_val; - mac_ctx->mlme_cfg->vht_caps.vht_cap_info.tx_bfee_ant_supp - = nsts_set_val; + + mac_ctx->mlme_cfg->vht_caps.vht_cap_info.tx_bfee_ant_supp = + nsts_set_val; if (usr_cfg_val) sme_set_he_tx_bf_cbf_rates(session_id);