diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2008-03-10 21:25:54 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2008-03-10 21:25:54 +0000 |
commit | ca584231ac266707c6a260461fea9c689e52e223 (patch) | |
tree | 202a9d34be5a25aa4636a91d8480fe2c3e28abe7 /sys/dev | |
parent | 192ed714fc0ef49d49e6b47e344515223b7bfe62 (diff) |
the Dell SoundBlaster Live! 5.1 cards differ enough from "regular"
SB Live!/5.1/Audigy/2/4 cards that both OSS and ALSA provide
separate modules from their emu10k1 drivers to support them.
and in PR 5143, we see that emu(4) does not support these Dell
SBLive! cards, so don't attach emu(4) to them.
ok ratchov, brad
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/emuxki.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/emuxki.c b/sys/dev/pci/emuxki.c index 01902176329..c5da568e230 100644 --- a/sys/dev/pci/emuxki.c +++ b/sys/dev/pci/emuxki.c @@ -1,4 +1,4 @@ -/* $OpenBSD: emuxki.c,v 1.25 2008/02/22 11:45:36 jakemsr Exp $ */ +/* $OpenBSD: emuxki.c,v 1.26 2008/03/10 21:25:53 jakemsr Exp $ */ /* $NetBSD: emuxki.c,v 1.1 2001/10/17 18:39:41 jdolecek Exp $ */ /*- @@ -207,7 +207,6 @@ void emuxki_ac97_reset(void *); const struct pci_matchid emuxki_devices[] = { { PCI_VENDOR_CREATIVELABS, PCI_PRODUCT_CREATIVELABS_SBLIVE }, - { PCI_VENDOR_CREATIVELABS, PCI_PRODUCT_CREATIVELABS_SBLIVE2 }, { PCI_VENDOR_CREATIVELABS, PCI_PRODUCT_CREATIVELABS_AUDIGY }, { PCI_VENDOR_CREATIVELABS, PCI_PRODUCT_CREATIVELABS_AUDIGY2 }, }; |