diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2011-06-17 06:17:56 (GMT) |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-06-17 09:36:30 (GMT) |
commit | f4b1e98aa93d548e5d51c8c5272ea08562fc71c1 (patch) | |
tree | f75f81831cee3f33225f9bc408b10fc127221df6 /sound/pci | |
parent | 030aba53ea361df2b44a292606c974ef48d438de (diff) | |
download | linux-f4b1e98aa93d548e5d51c8c5272ea08562fc71c1.tar.xz |
ALSA: firewire-speakers, oxygen, ua101: allow > 10 s periods
Since commit f2b3614cefb6 (Don't check DMA time-out too shortly),
drivers need no longer restrict their PCM period length to be shorter
than 10 seconds.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/oxygen/oxygen_pcm.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/pci/oxygen/oxygen_pcm.c b/sound/pci/oxygen/oxygen_pcm.c index d5533e3..cc0bcd9 100644 --- a/sound/pci/oxygen/oxygen_pcm.c +++ b/sound/pci/oxygen/oxygen_pcm.c @@ -168,12 +168,6 @@ static int oxygen_open(struct snd_pcm_substream *substream, if (err < 0) return err; } - if (channel == PCM_MULTICH) { - err = snd_pcm_hw_constraint_minmax - (runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME, 0, 8192000); - if (err < 0) - return err; - } snd_pcm_set_sync(substream); chip->streams[channel] = substream; |