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: Erin Yan <xinyey@codeaurora.org>
This commit is contained in:
Sergey Dolgov 2017-08-04 09:45:38 +02:00 committed by Gerrit - the friendly Code Review server
parent 2d7191e18b
commit 9dbcd8c1c9

View file

@ -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),
};