Title: [9096] trunk/sound/soc/blackfin/bf5xx-i2s.c: [#6193] change min/max channel from 2 to 1 else ad73311 which has
Revision
9096
Author
lliubbo
Date
2010-08-24 05:10:16 -0400 (Tue, 24 Aug 2010)

Log Message

[#6193] change min/max channel from 2 to 1 else ad73311 which has
only 1 cap/play channel can't work.

Modified Paths

Diff

Modified: trunk/sound/soc/blackfin/bf5xx-i2s.c (9095 => 9096)


--- trunk/sound/soc/blackfin/bf5xx-i2s.c	2010-08-23 08:07:42 UTC (rev 9095)
+++ trunk/sound/soc/blackfin/bf5xx-i2s.c	2010-08-24 09:10:16 UTC (rev 9096)
@@ -227,13 +227,13 @@
 	.suspend = bf5xx_i2s_suspend,
 	.resume = bf5xx_i2s_resume,
 	.playback = {
-		.channels_min = 2,
-		.channels_max = 2,
+		.channels_min = 1,
+		.channels_max = 1,
 		.rates = BF5XX_I2S_RATES,
 		.formats = BF5XX_I2S_FORMATS,},
 	.capture = {
-		.channels_min = 2,
-		.channels_max = 2,
+		.channels_min = 1,
+		.channels_max = 1,
 		.rates = BF5XX_I2S_RATES,
 		.formats = BF5XX_I2S_FORMATS,},
 	.ops = &bf5xx_i2s_dai_ops,
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to