summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorShyam Krishnan M <shyam.moni@stericsson.com>2011-08-09 18:24:42 +0530
committerRobert Marklund <robert.marklund@stericsson.com>2011-10-05 12:58:19 +0200
commitc23acf3241ed5dde47c56a6480617ccdcbe568c0 (patch)
tree53e7bd96b6dc8e32ba9185821d5ce5c84087e5e6 /sound
parent708ad66d5260ee70dcfbbe78113f70ca21c28e3f (diff)
Ux500 ASoC: Fix to set max/min in h/w setting
The maximum and minimum value in snd_pcm_hw_constraint_minmax is not checked when the maximum goes less than minimum. This check is put in place ST-Ericsson Linux next: NA ST-Ericsson ID: 348589 ST-Ericsson FOSS-OUT ID: STETL-FOSS-OUT-10006 Change-Id: I3abc645d64c0c7f9914609468e74b5256495bda6 Signed-off-by: Shyam Krishnan M <shyam.moni@stericsson.com> Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/31694 Reviewed-by: Avinash A <avinash.a@stericsson.com> Tested-by: Avinash A <avinash.a@stericsson.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/core/pcm_lib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c
index f1341308bed..ba6c529fe57 100644
--- a/sound/core/pcm_lib.c
+++ b/sound/core/pcm_lib.c
@@ -645,6 +645,8 @@ int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v)
}
} else if (!i->openmin && !i->openmax && i->min == i->max)
i->integer = 1;
+ if (i->max < i->min)
+ i->max = i->min;
if (snd_interval_checkempty(i)) {
snd_interval_none(i);
return -EINVAL;