Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9dbcd8c1 authored by Sergey Dolgov's avatar Sergey Dolgov Committed by Gerrit - the friendly Code Review server
Browse files

SoC: msm: change the MAX value of "App Type Config" kcontrol



Max value 0xFFFFFFFF in int type will be changed to negative
value in alsa library, change it to positive max value.

Change-Id: I3bb9e0dad4ffffb00c8dade27c0a715c890e8523
CRs-Fixed: 2087136
Signed-off-by: default avatarErin Yan <xinyey@codeaurora.org>
parent 2d7191e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11119,7 +11119,7 @@ static int msm_routing_put_app_type_cfg_control(struct snd_kcontrol *kcontrol,
static const struct snd_kcontrol_new app_type_cfg_controls[] = {
	SOC_SINGLE_MULTI_EXT("App Type Config", SND_SOC_NOPM, 0,
	0xFFFFFFFF, 0, 128, msm_routing_get_app_type_cfg_control,
	0x7FFFFFFF, 0, 128, msm_routing_get_app_type_cfg_control,
	msm_routing_put_app_type_cfg_control),
};