aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/acpi.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2009-10-06 17:33:49 -0400
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-11-04 11:47:18 -0500
commit42887b29ced263ec3b8bd26ef157a324789b89d9 (patch)
tree042eccbbf3e723e67c93f53e63a8b4a35e3abbc2 /arch/x86/pci/acpi.c
parenta369c791e881503a6253dafc0d0ad5e41e5557e5 (diff)
x86/PCI: print resources consistently with %pRt
This uses %pRt to print additional resource information (type, size, prefetchability, etc.) consistently. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/x86/pci/acpi.c')
-rw-r--r--arch/x86/pci/acpi.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c
index 1014eb4bfc37..9b3daf976732 100644
--- a/arch/x86/pci/acpi.c
+++ b/arch/x86/pci/acpi.c
@@ -7,6 +7,7 @@
7#include <asm/pci_x86.h> 7#include <asm/pci_x86.h>
8 8
9struct pci_root_info { 9struct pci_root_info {
10 struct acpi_device *bridge;
10 char *name; 11 char *name;
11 unsigned int res_num; 12 unsigned int res_num;
12 struct resource *res; 13 struct resource *res;
@@ -107,12 +108,18 @@ setup_resource(struct acpi_resource *acpi_res, void *data)
107 res->child = NULL; 108 res->child = NULL;
108 109
109 if (insert_resource(root, res)) { 110 if (insert_resource(root, res)) {
110 printk(KERN_ERR "PCI: Failed to allocate 0x%lx-0x%lx " 111 dev_err(&info->bridge->dev, "can't allocate %pRt\n", res);
111 "from %s for %s\n", (unsigned long) res->start,
112 (unsigned long) res->end, root->name, info->name);
113 } else { 112 } else {
114 info->bus->resource[info->res_num] = res; 113 info->bus->resource[info->res_num] = res;
115 info->res_num++; 114 info->res_num++;
115 if (addr.translation_offset)
116 dev_info(&info->bridge->dev, "host bridge window: %pRt "
117 "(PCI address [%#llx-%#llx])\n",
118 res, res->start - addr.translation_offset,
119 res->end - addr.translation_offset);
120 else
121 dev_info(&info->bridge->dev,
122 "host bridge window: %pRt\n", res);
116 } 123 }
117 return AE_OK; 124 return AE_OK;
118} 125}
@@ -124,6 +131,7 @@ get_current_resources(struct acpi_device *device, int busnum,
124 struct pci_root_info info; 131 struct pci_root_info info;
125 size_t size; 132 size_t size;
126 133
134 info.bridge = device;
127 info.bus = bus; 135 info.bus = bus;
128 info.res_num = 0; 136 info.res_num = 0;
129 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_resource, 137 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_resource,