aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/pci/acpi.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c
index 9e5752fe4d15..6c7683709c44 100644
--- a/arch/x86/pci/acpi.c
+++ b/arch/x86/pci/acpi.c
@@ -210,11 +210,12 @@ struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int do
210 if (bus && node != -1) { 210 if (bus && node != -1) {
211#ifdef CONFIG_ACPI_NUMA 211#ifdef CONFIG_ACPI_NUMA
212 if (pxm >= 0) 212 if (pxm >= 0)
213 printk(KERN_DEBUG "bus %02x -> pxm %d -> node %d\n", 213 printk(KERN_DEBUG
214 busnum, pxm, node); 214 "pci %04x:%02x: bus on NUMA node %d (pxm %d)\n",
215 domain, busnum, node, pxm);
215#else 216#else
216 printk(KERN_DEBUG "bus %02x -> node %d\n", 217 printk(KERN_DEBUG "pci %04x:%02x: bus on NUMA node %d\n",
217 busnum, node); 218 domain, busnum, node);
218#endif 219#endif
219 } 220 }
220 221