summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2004-04-14 17:06:18 +0000
committerBrad Smith <brad@cvs.openbsd.org>2004-04-14 17:06:18 +0000
commite32e737b6c18c790ed6fc024e0941aeac2eff7dd (patch)
treed37bb23e4dd8d00e29d1daeb4a3c746d51616164 /sys/dev
parenta6509f9536cb46445507529a2a22779fd206a236 (diff)
another SoundBlaster Live
From: NetBSD ok mickey@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/emuxki.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/emuxki.c b/sys/dev/pci/emuxki.c
index 49ceaa5658b..4686e547890 100644
--- a/sys/dev/pci/emuxki.c
+++ b/sys/dev/pci/emuxki.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: emuxki.c,v 1.16 2004/02/24 18:22:30 deraadt Exp $ */
+/* $OpenBSD: emuxki.c,v 1.17 2004/04/14 17:06:17 brad Exp $ */
/* $NetBSD: emuxki.c,v 1.1 2001/10/17 18:39:41 jdolecek Exp $ */
/*-
@@ -407,8 +407,11 @@ emuxki_match(struct device *parent, void *match, void *aux)
struct pci_attach_args *pa = aux;
if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CREATIVELABS &&
- PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CREATIVELABS_SBLIVE)
+ (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CREATIVELABS_SBLIVE ||
+ PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_CREATIVELABS_SBLIVE2)
+ {
return (1);
+ }
return (0);
}