]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[SOUND] Sparc CS4231: Use 64 for period_bytes_min
authorDavid S. Miller <davem@davemloft.net>
Sat, 6 Jan 2007 00:00:48 +0000 (01:00 +0100)
committerAdrian Bunk <bunk@stusta.de>
Tue, 9 Jan 2007 02:23:30 +0000 (03:23 +0100)
This matches what the ISA cs4231 driver uses.

Tested by Georg Chini.

Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
sound/sparc/cs4231.c

index 8441d6bfbc9517f420a33b75c16353ba36519172..e581a023579a777e74fd96c45674910c7d7cdb57 100644 (file)
@@ -1271,7 +1271,7 @@ static struct snd_pcm_hardware snd_cs4231_playback =
        .channels_min           = 1,
        .channels_max           = 2,
        .buffer_bytes_max       = (32*1024),
-       .period_bytes_min       = 256,
+       .period_bytes_min       = 64,
        .period_bytes_max       = (32*1024),
        .periods_min            = 1,
        .periods_max            = 1024,
@@ -1291,7 +1291,7 @@ static struct snd_pcm_hardware snd_cs4231_capture =
        .channels_min           = 1,
        .channels_max           = 2,
        .buffer_bytes_max       = (32*1024),
-       .period_bytes_min       = 256,
+       .period_bytes_min       = 64,
        .period_bytes_max       = (32*1024),
        .periods_min            = 1,
        .periods_max            = 1024,