[PATCH 2/5] parisc: lba_pci: Use vsprintf extension %pR for struct resource

From: Joe Perches
Date: Mon Dec 13 2010 - 16:43:06 EST


Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
---
drivers/parisc/lba_pci.c | 13 +++++--------
1 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/drivers/parisc/lba_pci.c b/drivers/parisc/lba_pci.c
index 3aeb327..b1b6644 100644
--- a/drivers/parisc/lba_pci.c
+++ b/drivers/parisc/lba_pci.c
@@ -749,24 +749,21 @@ lba_fixup_bus(struct pci_bus *bus)
continue;

if (res->flags & IORESOURCE_IO) {
- DBG("lba_fixup_bus() I/O Ports [%lx/%lx] -> ",
- res->start, res->end);
+ DBG("lba_fixup_bus() I/O Ports [%pR] -> ", res);
res->start |= lba_portbase;
res->end |= lba_portbase;
- DBG("[%lx/%lx]\n", res->start, res->end);
+ DBG("[%pR]\n", res);
} else if (res->flags & IORESOURCE_MEM) {
/*
** Convert PCI (IO_VIEW) addresses to
** processor (PA_VIEW) addresses
*/
- DBG("lba_fixup_bus() MMIO [%lx/%lx] -> ",
- res->start, res->end);
+ DBG("lba_fixup_bus() MMIO [%pR] -> ", res);
res->start = PCI_HOST_ADDR(HBA_DATA(ldev), res->start);
res->end = PCI_HOST_ADDR(HBA_DATA(ldev), res->end);
- DBG("[%lx/%lx]\n", res->start, res->end);
+ DBG("[%pR]\n", res);
} else {
- DBG("lba_fixup_bus() WTF? 0x%lx [%lx/%lx] XXX",
- res->flags, res->start, res->end);
+ DBG("lba_fixup_bus() WTF? [%pR] XXX", res);
}

/*
--
1.7.3.3.398.g0b0cd.dirty

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/