aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorHenrik Kretzschmar <henrik@nachtwindheim.de>2006-03-25 10:29:52 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-25 12:10:53 -0500
commitb2b978f98036717e2508cf3288aecb8f9c7d724e (patch)
tree199c2026a1452bccee95cf64d3de8d024396929a /drivers/char
parent6edfba1b33c701108717f4e036320fc39abe1912 (diff)
[PATCH] x86_64: Fix wrong PCI ID for ALI M1695 AGP bridge
[description by AK] Made a cut'n'paste error when adding the entry for the ALI M1695 AGP bridge and added a second entry for the 1689 Cc: Dave Jones <davej@redhat.com> Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/agp/amd64-agp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c
index 1251b2515bbe..7c6c7268e236 100644
--- a/drivers/char/agp/amd64-agp.c
+++ b/drivers/char/agp/amd64-agp.c
@@ -725,7 +725,7 @@ static struct pci_device_id agp_amd64_pci_table[] = {
725 .class = (PCI_CLASS_BRIDGE_HOST << 8), 725 .class = (PCI_CLASS_BRIDGE_HOST << 8),
726 .class_mask = ~0, 726 .class_mask = ~0,
727 .vendor = PCI_VENDOR_ID_AL, 727 .vendor = PCI_VENDOR_ID_AL,
728 .device = 0x1689, 728 .device = 0x1695,
729 .subvendor = PCI_ANY_ID, 729 .subvendor = PCI_ANY_ID,
730 .subdevice = PCI_ANY_ID, 730 .subdevice = PCI_ANY_ID,
731 }, 731 },