aboutsummaryrefslogtreecommitdiff
path: root/sound/firewire
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2011-09-04 22:17:51 +0200
committerClemens Ladisch <clemens@ladisch.de>2013-10-20 22:07:57 +0200
commit435a9be8bdb7422b82c194fad2d279ef436addc1 (patch)
treea4977b392ecd3750d9fb366042ad7f7981cdd2ba /sound/firewire
parenteadce07faa8e71d8a0fc7501a5167fb999200225 (diff)
ALSA: dice: remove 10s period length limit
Since commit f2b3614cefb6 (Don't check DMA time-out too shortly), we need no longer to restrict the period length to less than 10 s. Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/firewire')
-rw-r--r--sound/firewire/dice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/dice.c b/sound/firewire/dice.c
index cfa98a83acb..57ceb13f281 100644
--- a/sound/firewire/dice.c
+++ b/sound/firewire/dice.c
@@ -350,7 +350,7 @@ static int dice_open(struct snd_pcm_substream *substream)
err = snd_pcm_hw_constraint_minmax(runtime,
SNDRV_PCM_HW_PARAM_PERIOD_TIME,
- 5000, 8192000);
+ 5000, UINT_MAX);
if (err < 0)
goto err_lock;