aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-03-29 11:56:00 -0400
committerTakashi Iwai <tiwai@suse.de>2012-03-29 11:56:00 -0400
commitd1045b6a9a73dc6bead25fe200b5b4e7feed7357 (patch)
tree5503ee1149e4f94d3eef56d887ea07736171bfd3 /sound/soc
parenta938fb1ef600c885f80e59b840a60894d16efb77 (diff)
parent41ba6b711a40b83a877ae8242a4b3e692de91f97 (diff)
Merge tag 'asoc-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: A few more updates for 3.4 The cleanup of the dmaengine parameter messup and a tweak to some callibration values for WM1811.
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/codecs/wm8994.c2
-rw-r--r--sound/soc/soc-dmaengine-pcm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c
index 9685dff44dd8..10d27890eed5 100644
--- a/sound/soc/codecs/wm8994.c
+++ b/sound/soc/codecs/wm8994.c
@@ -3652,7 +3652,7 @@ static int wm8994_codec_probe(struct snd_soc_codec *codec)
3652 case 2: 3652 case 2:
3653 case 3: 3653 case 3:
3654 wm8994->hubs.dcs_codes_l = -9; 3654 wm8994->hubs.dcs_codes_l = -9;
3655 wm8994->hubs.dcs_codes_r = -5; 3655 wm8994->hubs.dcs_codes_r = -7;
3656 break; 3656 break;
3657 default: 3657 default:
3658 break; 3658 break;
diff --git a/sound/soc/soc-dmaengine-pcm.c b/sound/soc/soc-dmaengine-pcm.c
index 4420b7030c83..475695234b3d 100644
--- a/sound/soc/soc-dmaengine-pcm.c
+++ b/sound/soc/soc-dmaengine-pcm.c
@@ -143,7 +143,7 @@ static int dmaengine_pcm_prepare_and_submit(struct snd_pcm_substream *substream)
143 direction = snd_pcm_substream_to_dma_direction(substream); 143 direction = snd_pcm_substream_to_dma_direction(substream);
144 144
145 prtd->pos = 0; 145 prtd->pos = 0;
146 desc = chan->device->device_prep_dma_cyclic(chan, 146 desc = dmaengine_prep_dma_cyclic(chan,
147 substream->runtime->dma_addr, 147 substream->runtime->dma_addr,
148 snd_pcm_lib_buffer_bytes(substream), 148 snd_pcm_lib_buffer_bytes(substream),
149 snd_pcm_lib_period_bytes(substream), direction); 149 snd_pcm_lib_period_bytes(substream), direction);