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:
Родитель
db6b2060bc
Коммит
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
|
||||
|
|
Загрузка…
Ссылка в новой задаче