diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-06-05 16:12:16 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-06-05 16:44:22 +0200 |
commit | 775ffa1d3e5a550dd2c9d947d773021c61531b36 (patch) | |
tree | 7e32bab0739c9ea033b8948fa5039ecc184ddff2 /sound/pci/ctxfi | |
parent | b7bbf876087e0e2c0ba723a8398083c9a9ac1dfd (diff) | |
download | linux-3.10-775ffa1d3e5a550dd2c9d947d773021c61531b36.tar.gz linux-3.10-775ffa1d3e5a550dd2c9d947d773021c61531b36.tar.bz2 linux-3.10-775ffa1d3e5a550dd2c9d947d773021c61531b36.zip |
ALSA: ctxfi - Set periods_min to 2
Set 2 to minimal periods of playback pcm setups, too.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi')
-rw-r--r-- | sound/pci/ctxfi/ctpcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ctxfi/ctpcm.c b/sound/pci/ctxfi/ctpcm.c index 32b742dcd53..a0bd31c6090 100644 --- a/sound/pci/ctxfi/ctpcm.c +++ b/sound/pci/ctxfi/ctpcm.c @@ -40,7 +40,7 @@ static struct snd_pcm_hardware ct_pcm_playback_hw = { .buffer_bytes_max = (128*1024), .period_bytes_min = (64), .period_bytes_max = (128*1024), - .periods_min = 1, + .periods_min = 2, .periods_max = 1024, .fifo_size = 0, }; @@ -62,7 +62,7 @@ static struct snd_pcm_hardware ct_spdif_passthru_playback_hw = { .buffer_bytes_max = (128*1024), .period_bytes_min = (64), .period_bytes_max = (128*1024), - .periods_min = 1, + .periods_min = 2, .periods_max = 1024, .fifo_size = 0, }; |