summary refs log tree commit diff
path: root/drivers/mtd/maps/esb2rom.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-11-12 13:37:57 -0800
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-12-03 16:29:54 +0000
commitf9a5279c70af10e967872e922b91310a91f87b05 (patch)
treeded9ad28c58d9c575315b741cfde87d232be1bd3 /drivers/mtd/maps/esb2rom.c
parent9118ea321ee320e3c670540122857ff0eba91e32 (diff)
downloadlinux-f9a5279c70af10e967872e922b91310a91f87b05.tar.gz
mtd: maps: Use printf extension %pR for struct resource
Using %pR standardizes the struct resource output.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/maps/esb2rom.c')
-rw-r--r--drivers/mtd/maps/esb2rom.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/mtd/maps/esb2rom.c b/drivers/mtd/maps/esb2rom.c
index d12c93dc1aad..4feb7507ab7c 100644
--- a/drivers/mtd/maps/esb2rom.c
+++ b/drivers/mtd/maps/esb2rom.c
@@ -242,12 +242,9 @@ static int __devinit esb2rom_init_one(struct pci_dev *pdev,
 	window->rsrc.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
 	if (request_resource(&iomem_resource, &window->rsrc)) {
 		window->rsrc.parent = NULL;
-		printk(KERN_DEBUG MOD_NAME
-			": %s(): Unable to register resource"
-			" 0x%.08llx-0x%.08llx - kernel bug?\n",
-			__func__,
-			(unsigned long long)window->rsrc.start,
-			(unsigned long long)window->rsrc.end);
+		printk(KERN_DEBUG MOD_NAME ": "
+		       "%s(): Unable to register resource %pR - kernel bug?\n",
+			__func__, &window->rsrc);
 	}
 
 	/* Map the firmware hub into my address space. */