Commit 189f06c0 authored by Jaswinder Jassal's avatar Jaswinder Jassal Committed by Mark Brown

ASoC: core: fix shift used for second item in snd_soc_get_enum_double

Incorrect shift value was being used to extract the second item.
Signed-off-by: default avatarJaswinder Jassal <jjassal@opensource.wolfsonmicro.com>
Reviewed-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 29b4817d
...@@ -77,7 +77,7 @@ int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol, ...@@ -77,7 +77,7 @@ int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
item = snd_soc_enum_val_to_item(e, val); item = snd_soc_enum_val_to_item(e, val);
ucontrol->value.enumerated.item[0] = item; ucontrol->value.enumerated.item[0] = item;
if (e->shift_l != e->shift_r) { if (e->shift_l != e->shift_r) {
val = (reg_val >> e->shift_l) & e->mask; val = (reg_val >> e->shift_r) & e->mask;
item = snd_soc_enum_val_to_item(e, val); item = snd_soc_enum_val_to_item(e, val);
ucontrol->value.enumerated.item[1] = item; ucontrol->value.enumerated.item[1] = item;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment