aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorGiorgos Keramidas <keramida@FreeBSD.org>2009-02-02 04:48:32 +0000
committerGiorgos Keramidas <keramida@FreeBSD.org>2009-02-02 04:48:32 +0000
commitc1a7f5b779f68e623b269d0f5c172b2eb87b0bb4 (patch)
tree88b9f9fd2823ccc0e4f755cb009d9d3cc05c22e3 /sys/dev
parent19729fe2088ee5ab69b94482915d25673392cad9 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sound/pci/cmi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/sound/pci/cmi.c b/sys/dev/sound/pci/cmi.c
index 7e9d1bd7d076..cda1e8293063 100644
--- a/sys/dev/sound/pci/cmi.c
+++ b/sys/dev/sound/pci/cmi.c
@@ -60,6 +60,7 @@ SND_DECLARE_FILE("$FreeBSD$");
#define CMI8338B_PCI_ID 0x010113f6
#define CMI8738_PCI_ID 0x011113f6
#define CMI8738B_PCI_ID 0x011213f6
+#define CMI120_USB_ID 0x01030d8c
/* Buffer size max is 64k for permitted DMA boundaries */
#define CMI_DEFAULT_BUFSZ 16384
@@ -916,6 +917,9 @@ cmi_probe(device_t dev)
case CMI8738B_PCI_ID:
device_set_desc(dev, "CMedia CMI8738B");
return BUS_PROBE_DEFAULT;
+ case CMI120_USB_ID:
+ device_set_desc(dev, "CMedia CMI120");
+ return BUS_PROBE_DEFAULT;
default:
return ENXIO;
}