From 5439426f8640f4b4fb279b55df093659fb90b14a Mon Sep 17 00:00:00 2001 From: billf Date: Mon, 21 Feb 2000 21:46:19 +0000 Subject: Add the ESS Maestro and the ATI Mobility-1 to the generic chip match and the vga match (respectivly, though they aren't much different anymore..) These can be found on newer Dell laptops. Approved by: Sir Hubbard --- sys/pci/pcisupport.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sys/pci') diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 143375f..cc9a89b 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1253,6 +1253,10 @@ chip_match(device_t dev) case 0x800610c8: return ("NeoMagic MagicMedia 256ZX Audio controller"); + /* ESS Technology Inc -- vendor 0x125d */ + case 0x1978125d: + return ("ESS Technology Maestro 2E Audio controller"); + /* Toshiba -- vendor 0x1179 */ case 0x07011179: return ("Toshiba Fast Infra Red controller"); @@ -1453,6 +1457,8 @@ const char* pci_vga_match(device_t dev) chip = "Mach64-GW"; break; case 0x4758: chip = "Mach64-GX"; break; + case 0x4c4d: + chip = "Mobility-1"; break; case 0x475a: chip = "Mach64-GZ"; break; case 0x5245: -- cgit v1.1