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/arch/sparc64 | |
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/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/dev/ce4231.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/ce4231.c b/sys/arch/sparc64/dev/ce4231.c index 83b7b053803..3849e4c3f1d 100644 --- a/sys/arch/sparc64/dev/ce4231.c +++ b/sys/arch/sparc64/dev/ce4231.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ce4231.c,v 1.21 2005/09/08 15:25:54 martin Exp $ */ +/* $OpenBSD: ce4231.c,v 1.22 2008/04/21 00:32:42 jakemsr Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -184,7 +184,8 @@ struct audio_hw_if ce4231_sa_hw_if = { 0, ce4231_get_props, ce4231_trigger_output, - ce4231_trigger_input + ce4231_trigger_input, + 0 }; struct cfattach audioce_ca = { |