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/macppc/dev/daca.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/arch/macppc/dev/daca.c')
-rw-r--r-- | sys/arch/macppc/dev/daca.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/daca.c b/sys/arch/macppc/dev/daca.c index 8fcf8053e6d..f7be5eb6c42 100644 --- a/sys/arch/macppc/dev/daca.c +++ b/sys/arch/macppc/dev/daca.c @@ -1,5 +1,5 @@ -/* $OpenBSD: daca.c,v 1.4 2007/04/23 16:27:20 deraadt Exp $ */ -/* $Id: daca.c,v 1.4 2007/04/23 16:27:20 deraadt Exp $ */ +/* $OpenBSD: daca.c,v 1.5 2008/04/21 00:32:42 jakemsr Exp $ */ +/* $Id: daca.c,v 1.5 2008/04/21 00:32:42 jakemsr Exp $ */ /*- * Copyright (c) 2002,2003 Tsubai Masanari. All rights reserved. @@ -100,6 +100,7 @@ struct audio_hw_if daca_hw_if = { i2s_get_props, i2s_trigger_output, i2s_trigger_input, + NULL }; struct audio_device daca_device = { |