diff options
author | Daniel Ritz <daniel.ritz@gmx.ch> | 2006-12-06 20:19:36 +0100 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-12-08 16:53:49 +0100 |
commit | e5c8b1b830b76aadb9b9342d5c9b854dd4396f5b (patch) | |
tree | 5091940a81a8333f936c10615da10d35044e6537 | |
parent | 197ee54e2400c6f891e28fbfcd014d456c1ac519 (diff) |
PCI: fix ICH6 quirks
- add the ICH6(R) LPC to the ICH6 ACPI quirks. currently only the ICH6-M
is handled. [ PCI_DEVICE_ID_INTEL_ICH6_1 is the ICH6-M LPC, ICH6_0 is
the ICH6(R) ]
Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
-rw-r--r-- | drivers/pci/quirks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index ef17c183aa6..5583ba90f32 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -428,6 +428,7 @@ static void __devinit quirk_ich6_lpc_acpi(struct pci_dev *dev) pci_read_config_dword(dev, 0x48, ®ion); 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_0, quirk_ich6_lpc_acpi ); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1, quirk_ich6_lpc_acpi ); /* |