diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-08-02 17:19:34 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-08-05 13:19:04 +0100 |
commit | 0a017768e8964ab4a6a68ad47a042d28b35695fb (patch) | |
tree | 7a8f517493eb04030058ae104304da85824b26da /sound/soc/codecs/cs42l56.c | |
parent | ec7e4dc85cd7a2498d6ab71e9f77f49b41729fb4 (diff) | |
download | talos-op-linux-0a017768e8964ab4a6a68ad47a042d28b35695fb.tar.gz talos-op-linux-0a017768e8964ab4a6a68ad47a042d28b35695fb.zip |
ASoC: cs42l52: Replace TLV_DB_RANGE_HEAD with DECLARE_TLV_DB_RANGE
DECLARE_TLV_DB_RANGE() has the advantage over using TLV_DB_RANGE_HEAD()
that it automatically calculates the number of items in the TLV and is
hence less prone to manual error.
Generate using the following coccinelle script
// <smpl>
@@
declarer name DECLARE_TLV_DB_RANGE;
identifier tlv;
constant x;
@@
-unsigned int tlv[] = {
- TLV_DB_RANGE_HEAD(x),
+DECLARE_TLV_DB_RANGE(tlv,
...
-};
+);
// </smpl>
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Brian Austin <brian.austin@cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/cs42l56.c')
0 files changed, 0 insertions, 0 deletions