qcacld-3.0: Fix csr_check_concurrent_channel_overlap() style issues

Checkpatch reported the following issues, so fix them:
- ERROR: else should follow close brace '}'
- WARNING: braces {} are not necessary for single statement blocks

Change-Id: I9c8d329d70ee258834eaaea0183ba2e36643b572
CRs-Fixed: 2124908
diff --git a/core/sme/src/csr/csr_util.c b/core/sme/src/csr/csr_util.c
index 63c0dc0..bea5844 100644
--- a/core/sme/src/csr/csr_util.c
+++ b/core/sme/src/csr/csr_util.c
@@ -1278,16 +1278,14 @@
 			(intf_ch > 14 && sap_ch > 14))) {
 			if (policy_mgr_is_dbs_enable(mac_ctx->psoc))
 				intf_ch = 0;
-		}
-		else if (cc_switch_mode ==
+		} else if (cc_switch_mode ==
 			QDF_MCC_TO_SCC_SWITCH_WITH_FAVORITE_CHANNEL) {
 			status =
 				policy_mgr_get_sap_mandatory_channel(
 				mac_ctx->psoc,
 				(uint32_t *)&intf_ch);
-			if (QDF_IS_STATUS_ERROR(status)) {
+			if (QDF_IS_STATUS_ERROR(status))
 				sme_err("no mandatory channel");
-			}
 		}
 	} else if ((intf_ch == sap_ch) && (cc_switch_mode ==
 				QDF_MCC_TO_SCC_SWITCH_WITH_FAVORITE_CHANNEL)) {
@@ -1295,9 +1293,8 @@
 			status =
 				policy_mgr_get_sap_mandatory_channel(
 					mac_ctx->psoc, (uint32_t *)&intf_ch);
-			if (QDF_IS_STATUS_ERROR(status)) {
+			if (QDF_IS_STATUS_ERROR(status))
 				sme_err("no mandatory channel");
-			}
 		}
 	}