summaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug
diff options
context:
space:
mode:
authorBjorn Helgaas2010-03-16 22:53:08 +0100
committerJesse Barnes2010-03-24 21:21:36 +0100
commite1944c6b0fba80a7837c1cbc47dfbf46e1274a4b (patch)
treeb5431d6a428847b83b85e6762e94b2abbb781099 /drivers/pci/hotplug
parentPCI: make disabled window printk style match the enabled ones (diff)
downloadkernel-qcow2-linux-e1944c6b0fba80a7837c1cbc47dfbf46e1274a4b.tar.gz
kernel-qcow2-linux-e1944c6b0fba80a7837c1cbc47dfbf46e1274a4b.tar.xz
kernel-qcow2-linux-e1944c6b0fba80a7837c1cbc47dfbf46e1274a4b.zip
PCI: print resources consistently with %pR
No functional change; just print resources in the conventional style. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/hotplug')
-rw-r--r--drivers/pci/hotplug/pciehp_hpc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c
index 40b48f569b1e..9665d6b17a2a 100644
--- a/drivers/pci/hotplug/pciehp_hpc.c
+++ b/drivers/pci/hotplug/pciehp_hpc.c
@@ -832,9 +832,8 @@ static inline void dbg_ctrl(struct controller *ctrl)
for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
if (!pci_resource_len(pdev, i))
continue;
- ctrl_info(ctrl, " PCI resource [%d] : 0x%llx@0x%llx\n",
- i, (unsigned long long)pci_resource_len(pdev, i),
- (unsigned long long)pci_resource_start(pdev, i));
+ ctrl_info(ctrl, " PCI resource [%d] : %pR\n",
+ i, &pdev->resource[i]);
}
ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
ctrl_info(ctrl, " Physical Slot Number : %d\n", PSN(ctrl));