Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] sis 760 support.

This patch adds the SiS 760 ID to the amd64-agp driver, so that agpgart can be
used on Athlon64 boards based on this chip.

Signed-off-by: Daniel Drake <dsd@gentoo.org>
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Dave Jones and committed by
Linus Torvalds
2fa938b8 2668fb91

+9
+9
drivers/char/agp/amd64-agp.c
··· 686 686 .subvendor = PCI_ANY_ID, 687 687 .subdevice = PCI_ANY_ID, 688 688 }, 689 + /* SIS 760 */ 690 + { 691 + .class = (PCI_CLASS_BRIDGE_HOST << 8), 692 + .class_mask = ~0, 693 + .vendor = PCI_VENDOR_ID_SI, 694 + .device = PCI_DEVICE_ID_SI_760, 695 + .subvendor = PCI_ANY_ID, 696 + .subdevice = PCI_ANY_ID, 697 + }, 689 698 { } 690 699 }; 691 700