diff options
author | mharo <mharo@FreeBSD.org> | 1999-06-04 02:38:18 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-06-04 02:38:18 +0000 |
commit | 6e3b4f17abb49e11c855fb931f5e7676df10b542 (patch) | |
tree | 3d1100baa16cf96af690ad32589576e6c1a1f54c /sys/pci | |
parent | caa34cac11d838864c76cea93337b3f050b1f0a7 (diff) | |
download | FreeBSD-src-6e3b4f17abb49e11c855fb931f5e7676df10b542.zip FreeBSD-src-6e3b4f17abb49e11c855fb931f5e7676df10b542.tar.gz |
Add the 3Dfx Voodoo Banshee
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/pcisupport.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 6cf83c9..653d8ea 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcisupport.c,v 1.115 1999/05/27 10:59:40 roger Exp $ +** $Id: pcisupport.c,v 1.116 1999/05/27 12:26:50 yokota Exp $ ** ** Device driver for DEC/INTEL PCI chipsets. ** @@ -1287,6 +1287,14 @@ static const char* vga_match(device_t dev) chip = "NM2160 laptop"; break; } break; + case 0x121a: + vendor = "3Dfx"; + type = "graphics accelerator"; + switch (id >> 16) { + case 0x0003: + chip = "Voodoo Banshee"; break; + } + break; case 0x102b: vendor = "Matrox"; type = "graphics accelerator"; |