Browse Source

qcacmn: Fixing misleading indentation warnings

To fix misleading indentation warnings caused
due to gcc upgrade.

Change-Id: I807552011a49d7d132476f0ebf0fa50593a15c7e
Sandhya Mahadevan 6 years ago
parent
commit
091c291f38
1 changed files with 9 additions and 8 deletions
  1. 9 8
      hal/wifi3.0/qca6290/hal_6290_rx.h

+ 9 - 8
hal/wifi3.0/qca6290/hal_6290_rx.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -184,21 +184,22 @@ void hal_rx_proc_phyrx_other_receive_info_tlv_6290(void *rx_tlv_hdr,
 			     &ru_details_channel_0,
 			     sizeof(ppdu_info->rx_status.he_RU));
 
-		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_20)
+		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_20) {
 			ppdu_info->rx_status.he_sig_b_common_known |=
 				QDF_MON_STATUS_HE_SIG_B_COMMON_KNOWN_RU0;
-
-		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_40)
+		}
+		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_40) {
 			ppdu_info->rx_status.he_sig_b_common_known |=
 				QDF_MON_STATUS_HE_SIG_B_COMMON_KNOWN_RU1;
-
-		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_80)
+		}
+		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_80) {
 			ppdu_info->rx_status.he_sig_b_common_known |=
 				QDF_MON_STATUS_HE_SIG_B_COMMON_KNOWN_RU2;
-
-		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_160)
+		}
+		if (ppdu_info->rx_status.bw >= HAL_FULL_RX_BW_160) {
 			ppdu_info->rx_status.he_sig_b_common_known |=
 				QDF_MON_STATUS_HE_SIG_B_COMMON_KNOWN_RU3;
+		}
 			break;
 	default:
 		QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,