Commit e9a498d9 authored by Sergej Sawazki's avatar Sergej Sawazki Committed by Ben Hutchings

ASoC: wm8741: Fix rates constraints values

commit 8787041d upstream.

The WM8741 DAC supports the following typical audio sampling rates:
  44.1kHz, 88.2kHz, 176.4kHz (eg: with a master clock of 22.5792MHz)
  32kHz, 48kHz, 96kHz, 192kHz (eg: with a master clock of 24.576MHz)

For the rates lists, we should use 82000 instead of 88235, 176400
instead of 1764000 and 192000 instead of 19200 (seems to be a typo).
Signed-off-by: default avatarSergej Sawazki <ce3a@gmx.de>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
[bwh: Backported to 3.2: adjust context]
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 3a0e4c92
...@@ -117,7 +117,7 @@ static struct { ...@@ -117,7 +117,7 @@ static struct {
}; };
static unsigned int rates_11289[] = { static unsigned int rates_11289[] = {
44100, 88235, 44100, 88200,
}; };
static struct snd_pcm_hw_constraint_list constraints_11289 = { static struct snd_pcm_hw_constraint_list constraints_11289 = {
...@@ -144,7 +144,7 @@ static struct snd_pcm_hw_constraint_list constraints_16384 = { ...@@ -144,7 +144,7 @@ static struct snd_pcm_hw_constraint_list constraints_16384 = {
}; };
static unsigned int rates_16934[] = { static unsigned int rates_16934[] = {
44100, 88235, 44100, 88200,
}; };
static struct snd_pcm_hw_constraint_list constraints_16934 = { static struct snd_pcm_hw_constraint_list constraints_16934 = {
...@@ -162,7 +162,7 @@ static struct snd_pcm_hw_constraint_list constraints_18432 = { ...@@ -162,7 +162,7 @@ static struct snd_pcm_hw_constraint_list constraints_18432 = {
}; };
static unsigned int rates_22579[] = { static unsigned int rates_22579[] = {
44100, 88235, 1764000 44100, 88200, 176400
}; };
static struct snd_pcm_hw_constraint_list constraints_22579 = { static struct snd_pcm_hw_constraint_list constraints_22579 = {
...@@ -180,7 +180,7 @@ static struct snd_pcm_hw_constraint_list constraints_24576 = { ...@@ -180,7 +180,7 @@ static struct snd_pcm_hw_constraint_list constraints_24576 = {
}; };
static unsigned int rates_36864[] = { static unsigned int rates_36864[] = {
48000, 96000, 19200 48000, 96000, 192000
}; };
static struct snd_pcm_hw_constraint_list constraints_36864 = { static struct snd_pcm_hw_constraint_list constraints_36864 = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment