mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 00:29:50 +00:00
scsi: qedf: Use vsprintf extension %pad
Using %llx for a dma_addr_t can lead to format/argument mismatches. Use %pad and the address of the dma_addr_t instead. Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Chad Dupuis <chad.dupuis@cavium.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
db6b2060bc
commit
fd2b18b4a7
@ -2456,8 +2456,8 @@ static int qedf_alloc_bdq(struct qedf_ctx *qedf)
|
||||
}
|
||||
|
||||
QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
|
||||
"BDQ PBL addr=0x%p dma=0x%llx.\n", qedf->bdq_pbl,
|
||||
qedf->bdq_pbl_dma);
|
||||
"BDQ PBL addr=0x%p dma=%pad\n",
|
||||
qedf->bdq_pbl, &qedf->bdq_pbl_dma);
|
||||
|
||||
/*
|
||||
* Populate BDQ PBL with physical and virtual address of individual
|
||||
|
Loading…
x
Reference in New Issue
Block a user