diff mbox

ASoC: codecs-ac97: Remove rate constraints

Message ID 554E85B5.30107@maciej.szmigiero.name (mailing list archive)
State Accepted
Commit df82ca70bfae7c168edc31b2387205b71bb887a9
Headers show

Commit Message

Maciej S. Szmigiero May 9, 2015, 10:09 p.m. UTC
Remove rate constraints from generic ASoC AC'97 CODEC.
    
Supported rates should be detected and constrained anyway by
AC'97 generic code - was tested with VT1613 CODEC and iMX6 SSI
controller.

This way this driver can be used for platforms which don't need
specialized AC'97 CODEC drivers while at the same avoiding
code duplication from implementing equivalent functionality in
a controller driver.
    
Signed-off-by: Maciej Szmigiero <mail@maciej.szmigiero.name>

Comments

Mark Brown May 12, 2015, 6:01 p.m. UTC | #1
On Sun, May 10, 2015 at 12:09:57AM +0200, Maciej S. Szmigiero wrote:
> Remove rate constraints from generic ASoC AC'97 CODEC.
>     
> Supported rates should be detected and constrained anyway by
> AC'97 generic code - was tested with VT1613 CODEC and iMX6 SSI
> controller.

Applied, thanks.
diff mbox

Patch

--- a/sound/soc/codecs/ac97.c
+++ b/sound/soc/codecs/ac97.c
@@ -44,10 +44,6 @@  static int ac97_prepare(struct snd_pcm_substream *substream,
 	return snd_ac97_set_rate(ac97, reg, substream->runtime->rate);
 }
 
-#define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
-		SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
-		SNDRV_PCM_RATE_48000)
-
 static const struct snd_soc_dai_ops ac97_dai_ops = {
 	.prepare	= ac97_prepare,
 };
@@ -58,13 +54,13 @@  static struct snd_soc_dai_driver ac97_dai = {
 		.stream_name = "AC97 Playback",
 		.channels_min = 1,
 		.channels_max = 2,
-		.rates = STD_AC97_RATES,
+		.rates = SNDRV_PCM_RATE_KNOT,
 		.formats = SND_SOC_STD_AC97_FMTS,},
 	.capture = {
 		.stream_name = "AC97 Capture",
 		.channels_min = 1,
 		.channels_max = 2,
-		.rates = STD_AC97_RATES,
+		.rates = SNDRV_PCM_RATE_KNOT,
 		.formats = SND_SOC_STD_AC97_FMTS,},
 	.ops = &ac97_dai_ops,
 };