qcacld-3.0: Fix improper arguments for QDF_MAC_ADDR_REF
Currently in driver while using QDF_MAC_ADDR_FMT to print mac address, the mac address reference provided to QDF_MAC_ADDR_REF is incorrect in some cases. Fix all such instances. Change-Id: Ib5d84b01542ebf04ee7d23fb65305036651a6a45 CRs-Fixed: 3556409
This commit is contained in:

committed by
Rahul Choudhary

parent
a6753114c3
commit
b1969a2405
@@ -2260,7 +2260,8 @@ wmi_fill_roam_mlo_info(wmi_unified_t wmi_handle,
|
||||
link->link_addr.bytes);
|
||||
wmi_debug("link_id: %u vdev_id: %u flags: 0x%x addr:" QDF_MAC_ADDR_FMT,
|
||||
link->link_id, link->vdev_id,
|
||||
link->flags, link->link_addr.bytes);
|
||||
link->flags,
|
||||
QDF_MAC_ADDR_REF(link->link_addr.bytes));
|
||||
wmi_debug("channel: %u mhz center_freq1: %u center_freq2: %u",
|
||||
link->channel.mhz,
|
||||
link->channel.band_center_freq1,
|
||||
|
Reference in New Issue
Block a user