aboutsummaryrefslogtreecommitdiffstats
path: root/pci
diff options
context:
space:
mode:
authorGreg KH <greg@press.(none)>2005-10-27 22:15:56 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2005-10-27 22:15:56 -0700
commit6a5231a1c2b99eb4dc1b4f5e21f7e19a809ef66c (patch)
tree3264dc22437ae4158f2447a6f80a1b63f86d8d7d /pci
parent855c54b235e57a23419ca6e108df0757cd4b7e11 (diff)
downloadpatches-6a5231a1c2b99eb4dc1b4f5e21f7e19a809ef66c.tar.gz
fix up pci quirk patch due to api change
Diffstat (limited to 'pci')
-rw-r--r--pci/pci-ich6-acpi-quirk.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/pci/pci-ich6-acpi-quirk.patch b/pci/pci-ich6-acpi-quirk.patch
index 827997e7b8224..751dd05a6e4e4 100644
--- a/pci/pci-ich6-acpi-quirk.patch
+++ b/pci/pci-ich6-acpi-quirk.patch
@@ -28,10 +28,10 @@ Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+ u32 region;
+
+ pci_read_config_dword(dev, 0x40, &region);
-+ quirk_io_region(dev, region, 128, PCI_BRIDGE_RESOURCES);
++ quirk_io_region(dev, region, 128, PCI_BRIDGE_RESOURCES, "ICH6 ACPI/GPIO/TCO");
+
+ pci_read_config_dword(dev, 0x48, &region);
-+ quirk_io_region(dev, region, 64, PCI_BRIDGE_RESOURCES+1);
++ quirk_io_region(dev, region, 64, PCI_BRIDGE_RESOURCES+1, "ICH6 GPIO");
+}
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1, quirk_ich6_lpc_acpi );
+