projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
524205c
)
ASoC: tlv320aic3x: Convert codec->hw_read to snd_soc_read
author
Axel Lin
<axel.lin@gmail.com>
Fri, 14 Oct 2011 01:37:00 +0000
(09:37 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Fri, 14 Oct 2011 19:29:04 +0000
(20:29 +0100)
codec->hw_read is broken now, let's covert to snd_soc_read.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/codecs/tlv320aic3x.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/tlv320aic3x.c
b/sound/soc/codecs/tlv320aic3x.c
index be55b7f362827fc29815e2def8b3198dd2549573..7a49390bc30d44b89d35ba432af6b69693bb8188 100644
(file)
--- a/
sound/soc/codecs/tlv320aic3x.c
+++ b/
sound/soc/codecs/tlv320aic3x.c
@@
-137,7
+137,10
@@
static int aic3x_read(struct snd_soc_codec *codec, unsigned int reg,
if (reg >= AIC3X_CACHEREGNUM)
return -1;
- *value = codec->hw_read(codec, reg);
+ codec->cache_bypass = 1;
+ *value = snd_soc_read(codec, reg);
+ codec->cache_bypass = 0;
+
cache[reg] = *value;
return 0;