diff mbox

infiniband: cxgb4: use %pR format string for printing resources

Message ID 2278867.O0SM8nbQp0@wuerfel
State Accepted
Commit 3021376d6d12dd1be8a0a13c16dae8badb7766fd
Headers show

Commit Message

Arnd Bergmann Feb. 1, 2016, 4:42 p.m. UTC
The cxgb4 prints an MMIO resource using the "0x%x" and "%p" format
strings on the length and start, respective, but that
triggers a compiler warning when using a 64-bit resource_size_t
on a 32-bit architecture:

drivers/infiniband/hw/cxgb4/device.c: In function 'c4iw_rdev_open':
drivers/infiniband/hw/cxgb4/device.c:807:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
       (void *)pci_resource_start(rdev->lldi.pdev, 2),

This changes the format string to use %pR instead, which pretty-prints
the resource, avoids the warning and is shorter.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
This is an old warning I see rarely on ARM randconfig builds.

Comments

Steve Wise Feb. 1, 2016, 4:45 p.m. UTC | #1
> Subject: [PATCH] infiniband: cxgb4: use %pR format string for printing resources

> 

> The cxgb4 prints an MMIO resource using the "0x%x" and "%p" format

> strings on the length and start, respective, but that

> triggers a compiler warning when using a 64-bit resource_size_t

> on a 32-bit architecture:

> 

> drivers/infiniband/hw/cxgb4/device.c: In function 'c4iw_rdev_open':

> drivers/infiniband/hw/cxgb4/device.c:807:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

>        (void *)pci_resource_start(rdev->lldi.pdev, 2),

> 

> This changes the format string to use %pR instead, which pretty-prints

> the resource, avoids the warning and is shorter.

> 

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

> ---

> This is an old warning I see rarely on ARM randconfig builds.



Acked-by: Steve Wise <swise@opengridcomputing.com>
diff mbox

Patch

diff --git a/drivers/infiniband/hw/cxgb4/device.c b/drivers/infiniband/hw/cxgb4/device.c
index 8024ea4417b8..ebd60a20f148 100644
--- a/drivers/infiniband/hw/cxgb4/device.c
+++ b/drivers/infiniband/hw/cxgb4/device.c
@@ -801,10 +801,9 @@  static int c4iw_rdev_open(struct c4iw_rdev *rdev)
 	     rdev->lldi.vr->qp.size,
 	     rdev->lldi.vr->cq.start,
 	     rdev->lldi.vr->cq.size);
-	PDBG("udb len 0x%x udb base %p db_reg %p gts_reg %p "
+	PDBG("udb %pR db_reg %p gts_reg %p "
 	     "qpmask 0x%x cqmask 0x%x\n",
-	     (unsigned)pci_resource_len(rdev->lldi.pdev, 2),
-	     (void *)pci_resource_start(rdev->lldi.pdev, 2),
+		&rdev->lldi.pdev->resource[2],
 	     rdev->lldi.db_reg, rdev->lldi.gts_reg,
 	     rdev->qpmask, rdev->cqmask);