Browse Source

qcacld-3.0: Remove QDF_MAC_ADDR_ZERO_INITIALIZER

QDF_MAC_ADDR_ZERO_INITIALIZER has been depreciated in favor of
QDF_MAC_ADDR_ZERO_INIT. Replace all usages with the new macro.

Change-Id: I5847c4d41679b5aa1050fe481c4c54f640ab334c
CRs-Fixed: 2176466
Dustin Brown 7 years ago
parent
commit
4e565a41f2
1 changed files with 3 additions and 3 deletions
  1. 3 3
      core/hdd/src/wlan_hdd_ipa.c

+ 3 - 3
core/hdd/src/wlan_hdd_ipa.c

@@ -1362,9 +1362,9 @@ void hdd_ipa_set_tx_flow_info(void)
 	struct hdd_station_ctx *sta_ctx;
 	struct hdd_ap_ctx *hdd_ap_ctx;
 	struct hdd_hostapd_state *hostapd_state;
-	struct qdf_mac_addr staBssid = QDF_MAC_ADDR_ZERO_INITIALIZER;
-	struct qdf_mac_addr p2pBssid = QDF_MAC_ADDR_ZERO_INITIALIZER;
-	struct qdf_mac_addr apBssid = QDF_MAC_ADDR_ZERO_INITIALIZER;
+	struct qdf_mac_addr staBssid = QDF_MAC_ADDR_ZERO_INIT;
+	struct qdf_mac_addr p2pBssid = QDF_MAC_ADDR_ZERO_INIT;
+	struct qdf_mac_addr apBssid = QDF_MAC_ADDR_ZERO_INIT;
 	uint8_t staChannel = 0, p2pChannel = 0, apChannel = 0;
 	const char *p2pMode = "DEV";
 	struct hdd_context *hdd_ctx;