diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2004-04-14 17:06:18 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2004-04-14 17:06:18 +0000 |
commit | e32e737b6c18c790ed6fc024e0941aeac2eff7dd (patch) | |
tree | d37bb23e4dd8d00e29d1daeb4a3c746d51616164 /sys/dev | |
parent | a6509f9536cb46445507529a2a22779fd206a236 (diff) |
another SoundBlaster Live
From: NetBSD
ok mickey@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/emuxki.c | 7 |
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); } |