Ver Fonte

qcacmn: Replace QDF_MAC_ADDRESS_STR

QDF_MAC_ADDRESS_STR has been depreciated in favor of
QDF_MAC_ADDR_STR. Replace all usages with the new macro.

Change-Id: I534923783a32288f7861caf9ae52ca3aac965809
CRs-Fixed: 2179126
Dustin Brown há 7 anos atrás
pai
commit
48467505c0
1 ficheiros alterados com 6 adições e 6 exclusões
  1. 6 6
      core/src/wlan_p2p_off_chan_tx.c

+ 6 - 6
core/src/wlan_p2p_off_chan_tx.c

@@ -702,9 +702,9 @@ static QDF_STATUS p2p_tx_update_connection_status(
 
 	if (tx_frame_info->public_action_type !=
 		P2P_PUBLIC_ACTION_NOT_SUPPORT)
-		p2p_debug("%s ---> OTA to "QDF_MAC_ADDRESS_STR,
-				p2p_get_frame_type_str(tx_frame_info),
-				QDF_MAC_ADDR_ARRAY(mac_to));
+		p2p_debug("%s ---> OTA to " QDF_MAC_ADDR_STR,
+			  p2p_get_frame_type_str(tx_frame_info),
+			  QDF_MAC_ADDR_ARRAY(mac_to));
 
 	if ((tx_frame_info->public_action_type ==
 	     P2P_PUBLIC_ACTION_PROV_DIS_REQ) &&
@@ -746,9 +746,9 @@ static QDF_STATUS p2p_rx_update_connection_status(
 
 	if (rx_frame_info->public_action_type !=
 		P2P_PUBLIC_ACTION_NOT_SUPPORT)
-		p2p_debug("%s <--- OTA from "QDF_MAC_ADDRESS_STR,
-				p2p_get_frame_type_str(rx_frame_info),
-				QDF_MAC_ADDR_ARRAY(mac_from));
+		p2p_debug("%s <--- OTA from " QDF_MAC_ADDR_STR,
+			  p2p_get_frame_type_str(rx_frame_info),
+			  QDF_MAC_ADDR_ARRAY(mac_from));
 
 	if ((rx_frame_info->public_action_type ==
 	     P2P_PUBLIC_ACTION_PROV_DIS_REQ) &&