Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: sgtl5000: 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>

authored by

Lars-Peter Clausen and committed by
Mark Brown
53eb1ca3 53f28609

+3 -4
+3 -4
sound/soc/codecs/sgtl5000.c
··· 406 406 static const DECLARE_TLV_DB_SCALE(capture_6db_attenuate, -600, 600, 0); 407 407 408 408 /* tlv for mic gain, 0db 20db 30db 40db */ 409 - static const unsigned int mic_gain_tlv[] = { 410 - TLV_DB_RANGE_HEAD(2), 409 + static const DECLARE_TLV_DB_RANGE(mic_gain_tlv, 411 410 0, 0, TLV_DB_SCALE_ITEM(0, 0, 0), 412 - 1, 3, TLV_DB_SCALE_ITEM(2000, 1000, 0), 413 - }; 411 + 1, 3, TLV_DB_SCALE_ITEM(2000, 1000, 0) 412 + ); 414 413 415 414 /* tlv for hp volume, -51.5db to 12.0db, step .5db */ 416 415 static const DECLARE_TLV_DB_SCALE(headphone_volume, -5150, 50, 0);