From 3fad9b8d597f3a901fde947fc531886f685652c7 Mon Sep 17 00:00:00 2001 From: Joe Perches Date: Fri, 12 Nov 2010 21:38:00 +0000 Subject: drivers/parisc: Use printf extension %pR for struct resource Signed-off-by: Joe Perches Signed-off-by: Helge Deller --- drivers/parisc/hppb.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'drivers/parisc/hppb.c') diff --git a/drivers/parisc/hppb.c b/drivers/parisc/hppb.c index 815db175d427..898208e4f302 100644 --- a/drivers/parisc/hppb.c +++ b/drivers/parisc/hppb.c @@ -74,10 +74,8 @@ static int hppb_probe(struct parisc_device *dev) status = ccio_request_resource(dev, &card->mmio_region); if(status < 0) { - printk(KERN_ERR "%s: failed to claim HP-PB " - "bus space (0x%08llx, 0x%08llx)\n", - __FILE__, (unsigned long long) card->mmio_region.start, - (unsigned long long) card->mmio_region.end); + printk(KERN_ERR "%s: failed to claim HP-PB bus space (%pR)\n", + __FILE__, &card->mmio_region); } return 0; -- cgit v1.2.3