summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/sound/pci/ich.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c
index 1f4cee7..3d7b21f 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;
}
OpenPOWER on IntegriCloud