diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-06-10 07:26:29 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-06-10 07:26:29 +0200 |
commit | 2f0dabcc5f5fde67c64a6f71e9fb369aed39d56f (patch) | |
tree | 4c61e9509a84bed2646b302d74aa066377091477 /sound | |
parent | 19b1a15a3de2b3b6367c968e65bffe9503556ef1 (diff) | |
parent | 806d31d73843a018cb239fc16ba53d82f4d8dc33 (diff) | |
download | op-kernel-dev-2f0dabcc5f5fde67c64a6f71e9fb369aed39d56f.zip op-kernel-dev-2f0dabcc5f5fde67c64a6f71e9fb369aed39d56f.tar.gz |
Merge branch 'topic/emu10k1' into for-linus
* topic/emu10k1:
ALSA: emu10k1 - Fix minimum periods for efx playback
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/emu10k1/emupcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/emu10k1/emupcm.c b/sound/pci/emu10k1/emupcm.c index 78f62fd..55b83ef 100644 --- a/sound/pci/emu10k1/emupcm.c +++ b/sound/pci/emu10k1/emupcm.c @@ -1736,7 +1736,7 @@ static struct snd_pcm_hardware snd_emu10k1_fx8010_playback = .buffer_bytes_max = (128*1024), .period_bytes_min = 1024, .period_bytes_max = (128*1024), - .periods_min = 1, + .periods_min = 2, .periods_max = 1024, .fifo_size = 0, }; |