qcacmn: Fix compilation for 64-bit platform in non-tlv.c

Remove SUPPORT_64BIT_CHANGES compiler flag to make code common for both
64-bit and 32-bit platform.

Change-Id: I47e43c39e7f58cd04cbc3fb21d348af6b094e006
CRs-Fixed: 1105174
This commit is contained in:
Kiran Venkatappa
2016-12-17 22:31:24 +05:30
committed by qcabuildsw
parent 0663f21774
commit e20ad488fc

View File

@@ -1630,11 +1630,7 @@ QDF_STATUS send_beacon_send_cmd_non_tlv(wmi_unified_t wmi_handle,
cmd->frame_ctrl = param->frame_ctrl;
cmd->dtim_flag = dtim_flag;
cmd->frag_ptr = qdf_nbuf_get_frag_paddr(param->wbuf, 0);
#if SUPPORT_64BIT_CHANGES
cmd->virt_addr = (uintptr_t)param->wbuf;
#else
cmd->virt_addr = (A_UINT32)param->wbuf;
#endif
cmd->bcn_antenna = param->bcn_txant;
wmi_unified_cmd_send(wmi_handle, wmi_buf, len,
WMI_PDEV_SEND_BCN_CMDID);