From aaa3add4eaaec7f83bc65fd773f5c108ffe32955 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sat, 3 Nov 2001 05:07:59 +0000 Subject: [PATCH] Add Id for 82801CA (ICH3?). The ich driver seems to work fine on the laptop that had it. --- sys/dev/sound/pci/ich.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c index 1f4cee73279..3d7b21faa86 100644 --- a/sys/dev/sound/pci/ich.c +++ b/sys/dev/sound/pci/ich.c @@ -453,13 +453,17 @@ ich_pci_probe(device_t dev) return 0; case 0x24258086: - device_set_desc(dev, "Intel 82901AB (ICH)"); + device_set_desc(dev, "Intel 82801AB (ICH)"); return 0; case 0x24458086: device_set_desc(dev, "Intel 82801BA (ICH2)"); return 0; + case 0x24858086: + device_set_desc(dev, "Intel 82801CA (ICH3)"); + return 0; + default: return ENXIO; }