ASoC: msm: qdsp6v2: Enable DSP gapless by default

Enable DSP gapless mode by default

Bug: 23221273
Change-Id: I8b35a62a5e10493e605851b4499d4604a5525c09
Signed-off-by: Haynes Mathew George <hgeorge@codeaurora.org>
This commit is contained in:
Haynes Mathew George 2015-08-24 11:42:34 -07:00 committed by syphyr
parent 220058f2e5
commit d656e215a5
1 changed files with 2 additions and 2 deletions

View File

@ -2806,9 +2806,9 @@ static int msm_compr_probe(struct snd_soc_platform *platform)
* use_dsp_gapless_mode part of platform data(pdata) is updated from HAL
* through a mixer control before compress driver is opened. The mixer
* control is used to decide if dsp gapless mode needs to be enabled.
* Gapless is disabled by default.
* Gapless is enabled by default.
*/
pdata->use_dsp_gapless_mode = false;
pdata->use_dsp_gapless_mode = true;
return 0;
}