diff options
author | Rob Rice <rrice@broadcom.com> | 2016-07-28 11:54:20 -0400 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2016-07-28 21:27:31 +0530 |
commit | a68b216676e89fa959a23b583b56f9ce7df81b37 (patch) | |
tree | 27f9e57f360c842991ee9889b9542e306b3718db /drivers/mailbox/bcm-pdc-mailbox.c | |
parent | a24532f8d17b7211dfb0259920edfcffc8306606 (diff) | |
download | linux-a68b216676e89fa959a23b583b56f9ce7df81b37.tar.gz linux-a68b216676e89fa959a23b583b56f9ce7df81b37.tar.bz2 linux-a68b216676e89fa959a23b583b56f9ce7df81b37.zip |
mailbox: Fix format and type mismatches in Broadcom PDC driver
Fix format and type mismatches in a couple debug prints in the
Broadcom PDC driver. Use %pad for dma_addr_t and %pa for
resource_size_t.
Signed-off-by: Rob Rice <rob.rice@broadcom.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox/bcm-pdc-mailbox.c')
-rw-r--r-- | drivers/mailbox/bcm-pdc-mailbox.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mailbox/bcm-pdc-mailbox.c b/drivers/mailbox/bcm-pdc-mailbox.c index cc14a00babc3..cbe0c1ee4ba9 100644 --- a/drivers/mailbox/bcm-pdc-mailbox.c +++ b/drivers/mailbox/bcm-pdc-mailbox.c @@ -1028,9 +1028,9 @@ static int pdc_ring_init(struct pdc_state *pdcs, int ringset) goto fail_dealloc; } - dev_dbg(dev, " - base DMA addr of tx ring %#llx", tx.dmabase); + dev_dbg(dev, " - base DMA addr of tx ring %pad", &tx.dmabase); dev_dbg(dev, " - base virtual addr of tx ring %p", tx.vbase); - dev_dbg(dev, " - base DMA addr of rx ring %#llx", rx.dmabase); + dev_dbg(dev, " - base DMA addr of rx ring %pad", &rx.dmabase); dev_dbg(dev, " - base virtual addr of rx ring %p", rx.vbase); /* lock after ring allocation to avoid scheduling while atomic */ @@ -1455,8 +1455,8 @@ static int pdc_probe(struct platform_device *pdev) err = -ENODEV; goto cleanup_ring_pool; } - dev_dbg(dev, "PDC register region res.start = %#llx, res.end = %#llx", - pdc_regs->start, pdc_regs->end); + dev_dbg(dev, "PDC register region res.start = %pa, res.end = %pa", + &pdc_regs->start, &pdc_regs->end); pdcs->pdc_reg_vbase = devm_ioremap_resource(&pdev->dev, pdc_regs); if (IS_ERR(pdcs->pdc_reg_vbase)) { |