diff options
| author | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
| commit | a8931ef380c92d121ae74ecfb03b2d63f72eea6f (patch) | |
| tree | 980fb6b019e11e6cb1ece55b7faff184721a8053 /arch/x86/pci/acpi.c | |
| parent | 90574d0a4d4b73308ae54a2a57a4f3f1fa98e984 (diff) | |
| parent | e5a5816f7875207cb0a0a7032e39a4686c5e10a4 (diff) | |
| download | olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.tar.xz olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.zip  | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'arch/x86/pci/acpi.c')
| -rw-r--r-- | arch/x86/pci/acpi.c | 41 | 
1 files changed, 0 insertions, 41 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c index 1a9c0c6a1a1..d95de2f199c 100644 --- a/arch/x86/pci/acpi.c +++ b/arch/x86/pci/acpi.c @@ -6,45 +6,6 @@  #include <asm/numa.h>  #include "pci.h" -static int __devinit can_skip_ioresource_align(const struct dmi_system_id *d) -{ -	pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; -	printk(KERN_INFO "PCI: %s detected, can skip ISA alignment\n", d->ident); -	return 0; -} - -static struct dmi_system_id acpi_pciprobe_dmi_table[] __devinitdata = { -/* - * Systems where PCI IO resource ISA alignment can be skipped - * when the ISA enable bit in the bridge control is not set - */ -	{ -		.callback = can_skip_ioresource_align, -		.ident = "IBM System x3800", -		.matches = { -			DMI_MATCH(DMI_SYS_VENDOR, "IBM"), -			DMI_MATCH(DMI_PRODUCT_NAME, "x3800"), -		}, -	}, -	{ -		.callback = can_skip_ioresource_align, -		.ident = "IBM System x3850", -		.matches = { -			DMI_MATCH(DMI_SYS_VENDOR, "IBM"), -			DMI_MATCH(DMI_PRODUCT_NAME, "x3850"), -		}, -	}, -	{ -		.callback = can_skip_ioresource_align, -		.ident = "IBM System x3950", -		.matches = { -			DMI_MATCH(DMI_SYS_VENDOR, "IBM"), -			DMI_MATCH(DMI_PRODUCT_NAME, "x3950"), -		}, -	}, -	{} -}; -  struct pci_root_info {  	char *name;  	unsigned int res_num; @@ -196,8 +157,6 @@ struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int do  	int pxm;  #endif -	dmi_check_system(acpi_pciprobe_dmi_table); -  	if (domain && !pci_domains_supported) {  		printk(KERN_WARNING "PCI: Multiple domains not supported "  		       "(dom %d, bus %d)\n", domain, busnum);  |