aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/acpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/pci/acpi.c')
-rw-r--r--arch/x86/pci/acpi.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c
index c6fd3a6afa42..27a391da9a98 100644
--- a/arch/x86/pci/acpi.c
+++ b/arch/x86/pci/acpi.c
@@ -189,6 +189,12 @@ struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int do
189 189
190 dmi_check_system(acpi_pciprobe_dmi_table); 190 dmi_check_system(acpi_pciprobe_dmi_table);
191 191
192 if (domain && !pci_domains_supported) {
193 printk(KERN_WARNING "PCI: Multiple domains not supported "
194 "(dom %d, bus %d)\n", domain, busnum);
195 return NULL;
196 }
197
192 /* Allocate per-root-bus (not per bus) arch-specific data. 198 /* Allocate per-root-bus (not per bus) arch-specific data.
193 * TODO: leak; this memory is never freed. 199 * TODO: leak; this memory is never freed.
194 * It's arguable whether it's worth the trouble to care. 200 * It's arguable whether it's worth the trouble to care.
@@ -199,12 +205,7 @@ struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int do
199 return NULL; 205 return NULL;
200 } 206 }
201 207
202 if (domain != 0) { 208 sd->domain = domain;
203 printk(KERN_WARNING "PCI: Multiple domains not supported\n");
204 kfree(sd);
205 return NULL;
206 }
207
208 sd->node = -1; 209 sd->node = -1;
209 210
210 pxm = acpi_get_pxm(device->handle); 211 pxm = acpi_get_pxm(device->handle);