diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2008-10-25 22:30:44 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2008-10-25 22:30:44 +0000 |
commit | fe8114f730e5473eba5ee55c81c541e29edbeea8 (patch) | |
tree | 545de71dde8d0a2e03bc8556eeaa4beb581824dd /sys/dev/pci/auacer.c | |
parent | d54880b2f6a9ada7238d4417b82adb8ce1f2ae77 (diff) |
audio(9) says low level drivers are allowed to change the requested
values of the audio_params structure during AUDIO_SETINFO if the
hardware cannot be set to exactly the requested mode.
some drivers do this sometimes. others always return EINVAL if there
isn't an exact match.
be more consistent. only return EINVAL if an absurd parameter was
requested, otherwise return a supported set of parameters, as close
as possible to what was requested.
with/ok ratchov@
Diffstat (limited to 'sys/dev/pci/auacer.c')
-rw-r--r-- | sys/dev/pci/auacer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/auacer.c b/sys/dev/pci/auacer.c index 24e68e3740c..55e6601ee23 100644 --- a/sys/dev/pci/auacer.c +++ b/sys/dev/pci/auacer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auacer.c,v 1.3 2008/10/21 05:36:46 fkr Exp $ */ +/* $OpenBSD: auacer.c,v 1.4 2008/10/25 22:30:43 jakemsr Exp $ */ /* $NetBSD: auacer.c,v 1.3 2004/11/10 04:20:26 kent Exp $ */ /*- @@ -578,8 +578,8 @@ auacer_set_params(void *v, int setmode, int usemode, struct audio_params *play, p->sw_code = NULL; if (mode == AUMODE_RECORD) { - if (p->channels < 1 || p->channels > 2) - return EINVAL; + if (p->channels > 2) + p->channels = 2; } switch (p->encoding) { |