Browse Source

qcacld-3.0: mlme: Replace fallthrough comment with attribute

-Wimplicit-fallthrough is being enabled by default. Some compilers
such as clang require the attribute instead of just a fallthrough comment.

Change-Id: I498703190e452eb4d263ee44ff1745622577eda1
CRs-Fixed: 3217410
David Oladunjoye 2 years ago
parent
commit
bf4bd0e116
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/mlme/dispatcher/src/wlan_mlme_api.c

+ 2 - 2
components/mlme/dispatcher/src/wlan_mlme_api.c

@@ -5837,7 +5837,7 @@ uint8_t mlme_get_max_he_mcs_idx(enum phy_ch_width mcs_ch_width,
 			if (max_mcs < 0x03)
 				max_mcs = 7 + 2 * max_mcs;
 		}
-		/* fallthrough */
+		fallthrough;
 	case CH_WIDTH_160MHZ:
 		if (hecap_rxmcsnssmap[HECAP_TXRX_MCS_NSS_IDX_160] &&
 		    hecap_txmcsnssmap[HECAP_TXRX_MCS_NSS_IDX_160]) {
@@ -5847,7 +5847,7 @@ uint8_t mlme_get_max_he_mcs_idx(enum phy_ch_width mcs_ch_width,
 			if (max_mcs < 0x03)
 				max_mcs = 7 + 2 * max_mcs;
 		}
-		/* fallthrough */
+		fallthrough;
 	default:
 		if (hecap_rxmcsnssmap[HECAP_TXRX_MCS_NSS_IDX_80] &&
 		    hecap_txmcsnssmap[HECAP_TXRX_MCS_NSS_IDX_80]) {