diff options
author | Maarten Lankhorst <m.b.lankhorst@gmail.com> | 2011-08-24 00:48:59 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-08-24 10:39:44 +0200 |
commit | 391e69143d0a05f960e3ab39a8c26b7b230bb8a9 (patch) | |
tree | 9576019c6bbcbad7485fec00615f96005ee73f82 /sound/pci/ctxfi/ctpcm.c | |
parent | ALSA: core: release the constraint check for replace ops (diff) | |
download | linux-391e69143d0a05f960e3ab39a8c26b7b230bb8a9.tar.xz linux-391e69143d0a05f960e3ab39a8c26b7b230bb8a9.zip |
ALSA: ctxfi: Bump playback substreams to 256
There are references in the code to 256 sources, so I tested it with 256 aplays,
of which the first and last with real data and the rest playing /dev/zero .
Also increase amount of page tables, so the default aplay size works.
Signed-off-by: Maarten Lankhorst <m.b.lankhorst@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/ctpcm.c')
-rw-r--r-- | sound/pci/ctxfi/ctpcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ctxfi/ctpcm.c b/sound/pci/ctxfi/ctpcm.c index 457d21189b0d..2c8622617c8c 100644 --- a/sound/pci/ctxfi/ctpcm.c +++ b/sound/pci/ctxfi/ctpcm.c @@ -404,7 +404,7 @@ int ct_alsa_pcm_create(struct ct_atc *atc, int err; int playback_count, capture_count; - playback_count = (IEC958 == device) ? 1 : 8; + playback_count = (IEC958 == device) ? 1 : 256; capture_count = (FRONT == device) ? 1 : 0; err = snd_pcm_new(atc->card, "ctxfi", device, playback_count, capture_count, &pcm); |