diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-07-10 23:11:24 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-08-03 16:59:15 +0100 |
commit | afa2f1066e7288a9e4f8e3fda277da245219dffc (patch) | |
tree | 3f19f2e84e797e6fc45bb5f81e0dc6dae393da76 /include/sound | |
parent | 7084a42b965d972079201414d19a399e65b26099 (diff) | |
download | op-kernel-dev-afa2f1066e7288a9e4f8e3fda277da245219dffc.zip op-kernel-dev-afa2f1066e7288a9e4f8e3fda277da245219dffc.tar.gz |
ASoC: Factor out I2C 8 bit address 16 bit data I/O
As part of this refactoring the type of the CODEC hw_read operation
is changed to match the regular read operation.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/soc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index d0b29a5..4a5846e 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -373,7 +373,7 @@ struct snd_soc_codec { size_t, unsigned int); int (*volatile_register)(unsigned int); hw_write_t hw_write; - hw_read_t hw_read; + unsigned int (*hw_read)(struct snd_soc_codec *, unsigned int); void *reg_cache; short reg_cache_size; short reg_cache_step; |