diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2008-04-21 00:32:44 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2008-04-21 00:32:44 +0000 |
commit | 36bf5b189175ea403450119f66c0fc6b0065200b (patch) | |
tree | aaa8e60176bd1cd2a387e885e469287cf38c8497 /sys/dev/isa/ess.c | |
parent | e2c0d8670c0c4a94f1c1a1fce050bead469315cf (diff) |
allow low level audio drivers to specify a default sample format,
instead of 8-bit mono mulaw @ 8kHz.
this is just the infrastructure; no drivers are specifying a default
yet.
ok ratchov@, deanna@
Diffstat (limited to 'sys/dev/isa/ess.c')
-rw-r--r-- | sys/dev/isa/ess.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/ess.c b/sys/dev/isa/ess.c index b661ad8abb8..a2941cf06bd 100644 --- a/sys/dev/isa/ess.c +++ b/sys/dev/isa/ess.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ess.c,v 1.12 2007/11/05 00:17:28 jakemsr Exp $ */ +/* $OpenBSD: ess.c,v 1.13 2008/04/21 00:32:42 jakemsr Exp $ */ /* $NetBSD: ess.c,v 1.44.4.1 1999/06/21 01:18:00 thorpej Exp $ */ /* @@ -237,6 +237,7 @@ struct audio_hw_if ess_1788_hw_if = { ess_1788_get_props, ess_audio1_trigger_output, ess_audio1_trigger_input, + NULL }; struct audio_hw_if ess_1888_hw_if = { @@ -266,6 +267,7 @@ struct audio_hw_if ess_1888_hw_if = { ess_1888_get_props, ess_audio2_trigger_output, ess_audio1_trigger_input, + NULL }; #ifdef AUDIO_DEBUG |