Unverified Commit 0beeb330 authored by gearhead's avatar gearhead Committed by Mark Brown
Browse files

ASoC: pcm5102a: increase rate from 192k to 384k



the pcm5102a is capable of 384k, but the current code limits it to 192k.
This commit extends to 384k

Signed-off-by: default avatargearhead <ys3al35l@gmail.com>
Link: https://lore.kernel.org/r/20210907210130.116769-1-ys3al35l@gmail.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 87f40af2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -17,7 +17,7 @@ static struct snd_soc_dai_driver pcm5102a_dai = {
	.playback = {
	.playback = {
		.channels_min = 2,
		.channels_min = 2,
		.channels_max = 2,
		.channels_max = 2,
		.rates = SNDRV_PCM_RATE_8000_192000,
		.rates = SNDRV_PCM_RATE_8000_384000,
		.formats = SNDRV_PCM_FMTBIT_S16_LE |
		.formats = SNDRV_PCM_FMTBIT_S16_LE |
			   SNDRV_PCM_FMTBIT_S24_LE |
			   SNDRV_PCM_FMTBIT_S24_LE |
			   SNDRV_PCM_FMTBIT_S32_LE
			   SNDRV_PCM_FMTBIT_S32_LE