diff options
| author | Hardik Kantilal Patel <hkpatel@codeaurora.org> | 2016-07-14 17:26:13 +0530 |
|---|---|---|
| committer | Vishwajith Upendra <vishwaji@codeaurora.org> | 2016-07-25 00:33:48 -0700 |
| commit | e9b97ea6ea6f8d2731801efb8bd8d6414374d5ef (patch) | |
| tree | a825b6fd253e0842cf296a18a03cd6c28b410971 | |
| parent | c0c2dfb0c60f58a55158d14ec19b87f444d1fcbd (diff) | |
qcacld-3.0: Address 32 bit specific compilation issue
Fixing 32 bit compliation issues due to improper print
format type.
CRs-Fixed: 1043823
Change-Id: I22330c4598532142f2c84636e7c890dcb4435e70
| -rw-r--r-- | core/dp/txrx/ol_tx.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/dp/txrx/ol_tx.c b/core/dp/txrx/ol_tx.c index 40374f043050..1e49ee1e144b 100644 --- a/core/dp/txrx/ol_tx.c +++ b/core/dp/txrx/ol_tx.c @@ -1705,10 +1705,11 @@ void dump_frag_desc(char *msg, struct ol_tx_desc_t *tx_desc) qdf_print("OL TX Descriptor 0x%p msdu_id %d\n", tx_desc, tx_desc->id); - qdf_print("HTT TX Descriptor vaddr: 0x%p paddr: 0x%llx", - tx_desc->htt_tx_desc, tx_desc->htt_tx_desc_paddr); - qdf_print("%s %d: Fragment Descriptor 0x%p (paddr=0x%llx)", - __func__, __LINE__, tx_desc->htt_frag_desc, tx_desc->htt_frag_desc_paddr); + qdf_print("HTT TX Descriptor vaddr: 0x%p paddr: %pad", + tx_desc->htt_tx_desc, &tx_desc->htt_tx_desc_paddr); + qdf_print("%s %d: Fragment Descriptor 0x%p (paddr=%pad)", + __func__, __LINE__, tx_desc->htt_frag_desc, + &tx_desc->htt_frag_desc_paddr); /* it looks from htt_tx_desc_frag() that tx_desc->htt_frag_desc is already de-referrable (=> in virtual address space) */ |
