diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-06-19 19:33:58 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-06-19 19:47:39 +0100 |
commit | 9578121c80a59f2cdd93c8a48bc9549ee873b14c (patch) | |
tree | a5a0b91c231b7f2711f8076821c30411b941f02e /sound | |
parent | fc99adc3d82c3cbec9b12b2a638dbdd2a2e4ece1 (diff) | |
download | linux-stable-9578121c80a59f2cdd93c8a48bc9549ee873b14c.tar.gz linux-stable-9578121c80a59f2cdd93c8a48bc9549ee873b14c.tar.bz2 linux-stable-9578121c80a59f2cdd93c8a48bc9549ee873b14c.zip |
ASoC: wm8991: Use SOC_SINGLE_EXT_TLV() instead of open-coding it
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8991.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sound/soc/codecs/wm8991.h b/sound/soc/codecs/wm8991.h index 8a942efd18a5..07707d8d7e20 100644 --- a/sound/soc/codecs/wm8991.h +++ b/sound/soc/codecs/wm8991.h @@ -822,12 +822,7 @@ #define SOC_WM899X_OUTPGA_SINGLE_R_TLV(xname, reg, shift, max, invert,\ tlv_array) \ -{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ - .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ - SNDRV_CTL_ELEM_ACCESS_READWRITE,\ - .tlv.p = (tlv_array), \ - .info = snd_soc_info_volsw, \ - .get = snd_soc_get_volsw, .put = wm899x_outpga_put_volsw_vu, \ - .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } + SOC_SINGLE_EXT_TLV(xname, reg, shift, max, invert, \ + snd_soc_get_volsw, wm899x_outpga_put_volsw_vu, tlv_array) #endif /* _WM8991_H */ |