Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de91fcc5 authored by Srinivas Girigowda's avatar Srinivas Girigowda Committed by snandini
Browse files

qcacmn: qdf: Replace QDF_MAC_ADR_STR/ARRAY with QDF_FULL_MAC_FMT/REF

Replace QDF_MAC_ADR_STR/ARRAY with QDF_FULL_MAC_FMT/REF.

Change-Id: Ief66fa40105e399fedee96cfaf142547cc6b3a2c
CRs-Fixed: 2763028
parent 824afaac
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -360,11 +360,11 @@ __ut_mac(const char *str, const char *display_str, QDF_STATUS exp_status,
		return 0;

	if (qdf_mem_cmp(&value, exp_value, sizeof(value))) {
		qdf_nofl_alert("FAIL: qdf_mac_parse(%s) -> " QDF_MAC_ADDR_FMT
			       "; expected " QDF_MAC_ADDR_FMT,
		qdf_nofl_alert("FAIL: qdf_mac_parse(%s) -> " QDF_FULL_MAC_FMT
			       "; expected " QDF_FULL_MAC_FMT,
			       display_str,
			       QDF_MAC_ADDR_REF(value.bytes),
			       QDF_MAC_ADDR_REF(exp_value->bytes));
			       QDF_FULL_MAC_REF(value.bytes),
			       QDF_FULL_MAC_REF(exp_value->bytes));
		return 1;
	}