diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-02 00:02:57 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-02 00:02:57 +0000 |
commit | 16eef665101a8c1334032296ea7d1584ff9c7e57 (patch) | |
tree | 5cc9b881cb0bdd13a85c95e2cbd124b47ddc4645 /sys/dev/pci | |
parent | 890d46b55a21bec77e2f60dbf22d16199ccdbaa7 (diff) |
Midi & sequencer support from NetBSD, mostly by Lennart Augustsson
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/eap.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/sv.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/eap.c b/sys/dev/pci/eap.c index 9e435ce0a8b..63393898840 100644 --- a/sys/dev/pci/eap.c +++ b/sys/dev/pci/eap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eap.c,v 1.3 1998/11/03 21:06:39 downsj Exp $ */ +/* $OpenBSD: eap.c,v 1.4 1999/01/02 00:02:49 niklas Exp $ */ /* $NetBSD: eap.c,v 1.17 1998/08/25 04:56:01 thorpej Exp $ */ /* @@ -478,7 +478,7 @@ eap_attach(parent, self, aux) ctl.un.mask = 1 << EAP_MIC_VOL; eap_mixer_set_port(sc, &ctl); - audio_attach_mi(&eap_hw_if, 0, sc, &sc->sc_dev); + audio_attach_mi(&eap_hw_if, sc, &sc->sc_dev); } int diff --git a/sys/dev/pci/sv.c b/sys/dev/pci/sv.c index 06342133a46..b7deed5e7ea 100644 --- a/sys/dev/pci/sv.c +++ b/sys/dev/pci/sv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sv.c,v 1.5 1998/11/03 21:05:07 downsj Exp $ */ +/* $OpenBSD: sv.c,v 1.6 1999/01/02 00:02:49 niklas Exp $ */ /* * Copyright (c) 1998 Constantine Paul Sapuntzakis @@ -412,7 +412,7 @@ sv_attach(parent, self, aux) sv_init_mixer(sc); - audio_attach_mi(&sv_hw_if, 0, sc, &sc->sc_dev); + audio_attach_mi(&sv_hw_if, sc, &sc->sc_dev); } #ifdef AUDIO_DEBUG |