Commit 2b298f993f0b33bd02085bb0cc31e6c11d17389b

Authored by Peter Rosin
Committed by Greg Kroah-Hartman
1 parent aaadfdb3aa

ASoC: pcm512x: Fix DSP program selection

commit 3a8e5019846736046c0af9dbee3f921c0456141a upstream.

The DSP programs are listed out of order.

Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

sound/soc/codecs/pcm512x.c
... ... @@ -188,8 +188,8 @@
188 188 static const char * const pcm512x_dsp_program_texts[] = {
189 189 "FIR interpolation with de-emphasis",
190 190 "Low latency IIR with de-emphasis",
191   - "Fixed process flow",
192 191 "High attenuation with de-emphasis",
  192 + "Fixed process flow",
193 193 "Ringing-less low latency FIR",
194 194 };
195 195