diff options
author | Vinod Koul <vinod.koul@intel.com> | 2015-11-23 21:22:29 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-11-25 12:56:19 +0000 |
commit | 50a4f98d3452ea3818eb364f9c34a9de139df654 (patch) | |
tree | ccc6149062d96dd292c0e07d905d233017016a0d | |
parent | 8005c49d9aea74d382f474ce11afbbc7d7130bec (diff) | |
download | op-kernel-dev-50a4f98d3452ea3818eb364f9c34a9de139df654.zip op-kernel-dev-50a4f98d3452ea3818eb364f9c34a9de139df654.tar.gz |
ASoC: core: mark SND_SOC_BYTES_EXT as deprecated
Since we have SND_SOC_BYTES_TLV control to lets devices have
larger size data sent, we do not need SND_SOC_BYTES_EXT with 512
byte limitation so mark it deprecated
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | include/sound/soc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index a8b4b9c..6dbd24a 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -293,6 +293,9 @@ {.base = xbase, .num_regs = xregs, \ .mask = xmask }) } +/* + * SND_SOC_BYTES_EXT is deprecated, please USE SND_SOC_BYTES_TLV instead + */ #define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \ { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ .info = snd_soc_bytes_info_ext, \ |