diff options
author | Henrik Kretzschmar <henrik@nachtwindheim.de> | 2006-03-23 21:29:19 +0100 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2006-03-24 19:24:56 -0500 |
commit | 5c48b0e3599ff7559b39093219e8a428776f7932 (patch) | |
tree | 5acd4a8d6cbd3b2293424166cec96f9899a4a166 /drivers | |
parent | 9d1ef8a64e21e57109be45a7345b09cf913e4b0e (diff) |
[AGPGART] 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
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/agp/amd64-agp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c index cccf05fdc6c..36517d4d1ad 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[] = { .class = (PCI_CLASS_BRIDGE_HOST << 8), .class_mask = ~0, .vendor = PCI_VENDOR_ID_AL, - .device = 0x1689, + .device = 0x1695, .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, }, |