diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-11-01 15:41:57 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-11-03 13:41:53 -0400 |
commit | c3753707991218aa2c18449a921847877533aa09 (patch) | |
tree | 10fcca7891e8885fe1fe5913bdac56f0c51567a1 /include/sound/soc.h | |
parent | 3f58fd84b0c0bd482151259ee0d2921974e1fe4c (diff) |
ASoC: Push snd_soc_write() and snd_soc_read() into the source file
Facilitating adding trace type stuff. For a first pass add some dev_dbg()
statements into them.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'include/sound/soc.h')
-rw-r--r-- | include/sound/soc.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index 5c3bce83f28..aaf34d7cd95 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -639,17 +639,9 @@ struct soc_enum { }; /* codec IO */ -static inline unsigned int snd_soc_read(struct snd_soc_codec *codec, - unsigned int reg) -{ - return codec->driver->read(codec, reg); -} - -static inline unsigned int snd_soc_write(struct snd_soc_codec *codec, - unsigned int reg, unsigned int val) -{ - return codec->driver->write(codec, reg, val); -} +unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg); +unsigned int snd_soc_write(struct snd_soc_codec *codec, + unsigned int reg, unsigned int val); /* device driver data */ |