Home
last modified time | relevance | path

Searched hist:"7 d711f63e36737968dcda5ce28fed3fb3e12fbdc" (Results 1 – 1 of 1) sorted by relevance

/linux/sound/soc/codecs/
H A Dwm8737.cdiff 7d711f63e36737968dcda5ce28fed3fb3e12fbdc Sun Aug 02 17:20:00 CEST 2015 Lars-Peter Clausen <lars@metafoo.de> ASoC: wm8737: 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>
Signed-off-by: Mark Brown <broonie@kernel.org>