diff options
author | Andrey Danin <danindrey@mail.ru> | 2012-02-11 23:26:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-02-11 22:55:54 +0000 |
commit | 39be1aff5077b76477bfaf3eeebc4c69022784da (patch) | |
tree | 54f7d768e1d3b3da36fdafb5a740e22f40a574dd /sound/soc/codecs/alc5632.c | |
parent | 7fb7528acb219d27bc5a23d22b3ced816656eed2 (diff) | |
download | op-kernel-dev-39be1aff5077b76477bfaf3eeebc4c69022784da.zip op-kernel-dev-39be1aff5077b76477bfaf3eeebc4c69022784da.tar.gz |
ASoC: alc5632: Fixed voice DAC volume step.
Remove extra zero from volume step in DECLARE_TLV_DB_SCALE macro.
Signed-off-by: Andrey Danin <danindrey@mail.ru>
Signed-off-by: Leon Romanovsky <leon@leon.nu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/alc5632.c')
-rw-r--r-- | sound/soc/codecs/alc5632.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/alc5632.c b/sound/soc/codecs/alc5632.c index 0d574aa..fce5e76 100644 --- a/sound/soc/codecs/alc5632.c +++ b/sound/soc/codecs/alc5632.c @@ -153,7 +153,7 @@ static const unsigned int boost_tlv[] = { /* 0db min scale, 6 db steps, no mute */ static const DECLARE_TLV_DB_SCALE(dig_tlv, 0, 600, 0); /* 0db min scalem 0.75db steps, no mute */ -static const DECLARE_TLV_DB_SCALE(vdac_tlv, -3525, 075, 0); +static const DECLARE_TLV_DB_SCALE(vdac_tlv, -3525, 75, 0); static const struct snd_kcontrol_new alc5632_vol_snd_controls[] = { /* left starts at bit 8, right at bit 0 */ |