From e9b97ea6ea6f8d2731801efb8bd8d6414374d5ef Mon Sep 17 00:00:00 2001 From: Hardik Kantilal Patel Date: Thu, 14 Jul 2016 17:26:13 +0530 Subject: 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 --- core/dp/txrx/ol_tx.c | 9 +++++---- 1 file 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) */ -- cgit v1.2.3