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/hppa | |
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/hppa')
-rw-r--r-- | sys/arch/hppa/gsc/harmony.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/gsc/harmony.c b/sys/arch/hppa/gsc/harmony.c index 2fb05dbc834..8dc70d91c79 100644 --- a/sys/arch/hppa/gsc/harmony.c +++ b/sys/arch/hppa/gsc/harmony.c @@ -1,4 +1,4 @@ -/* $OpenBSD: harmony.c,v 1.25 2006/05/20 01:58:27 mickey Exp $ */ +/* $OpenBSD: harmony.c,v 1.26 2008/04/21 00:32:42 jakemsr Exp $ */ /* * Copyright (c) 2003 Jason L. Wright (jason@thought.net) @@ -104,6 +104,7 @@ struct audio_hw_if harmony_sa_hw_if = { harmony_get_props, harmony_trigger_output, harmony_trigger_input, + NULL }; int harmony_match(struct device *, void *, void *); |