aboutsummaryrefslogtreecommitdiffstats
path: root/sound/usb/caiaq/caiaq-audio.c
diff options
context:
space:
mode:
authorDaniel Mack <daniel@caiaq.de>2008-01-24 18:46:42 +0100
committerJaroslav Kysela <perex@perex.cz>2008-01-31 17:30:14 +0100
commit09189ac793d7fef7d0f058815043e3d4bf7097c0 (patch)
tree5a0839d4d7d626af9691408503dd41ec12564533 /sound/usb/caiaq/caiaq-audio.c
parent[ALSA] fm801 - Add mute support for FM-only card with FM801 PCI to tuner bridge (diff)
downloadlinux-dev-09189ac793d7fef7d0f058815043e3d4bf7097c0.tar.xz
linux-dev-09189ac793d7fef7d0f058815043e3d4bf7097c0.zip
[ALSA] usb/caiaq: decrease period_bytes_min
This patch decreases the snd_pcm_hardware->period_bytes_min field in the caiaq/usb audio driver. The hardware can actually handle as few as 128 bytes, depending on the system. So it makes no sense to keep applications from actually using such values. Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/usb/caiaq/caiaq-audio.c')
-rw-r--r--sound/usb/caiaq/caiaq-audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/caiaq/caiaq-audio.c b/sound/usb/caiaq/caiaq-audio.c
index 2f9e9b2a7ffc..9cc4cd8283f9 100644
--- a/sound/usb/caiaq/caiaq-audio.c
+++ b/sound/usb/caiaq/caiaq-audio.c
@@ -57,7 +57,7 @@ static struct snd_pcm_hardware snd_usb_caiaq_pcm_hardware = {
.channels_min = CHANNELS_PER_STREAM,
.channels_max = CHANNELS_PER_STREAM,
.buffer_bytes_max = MAX_BUFFER_SIZE,
- .period_bytes_min = 4096,
+ .period_bytes_min = 128,
.period_bytes_max = MAX_BUFFER_SIZE,
.periods_min = 1,
.periods_max = 1024,