Skip to content

Commit

Permalink
ALSA: dice: remove 10s period length limit
Browse files Browse the repository at this point in the history
Since commit f2b3614 (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 <[email protected]>
  • Loading branch information
cladisch committed Oct 20, 2013
1 parent eadce07 commit 435a9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/firewire/dice.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 435a9be

Please sign in to comment.