diff options
author | Axel Lin <[email protected]> | 2015-10-21 08:34:37 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2015-10-21 13:30:23 +0100 |
commit | c5cff89b5f64b4fc7f6fd9be44b1aa7e766a94e4 (patch) | |
tree | f939e24afa8554de7e07344026b42101e864539b | |
parent | ba856fbd602175d386ab5a4fc0fdd89b912546cb (diff) |
ASoC: da7219: Fix da7219->alc_en state when enabling ALC
Signed-off-by: Axel Lin <[email protected]>
Tested-by: Adam Thomson <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Cc: [email protected]
-rw-r--r-- | sound/soc/codecs/da7219.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c index abba4b36caa0..f238c1e8a69c 100644 --- a/sound/soc/codecs/da7219.c +++ b/sound/soc/codecs/da7219.c @@ -402,7 +402,7 @@ static int da7219_alc_sw_put(struct snd_kcontrol *kcontrol, /* Force ALC offset calibration if enabling ALC */ if ((ucontrol->value.integer.value[0]) && (!da7219->alc_en)) { da7219_alc_calib(codec); - da7219->alc_en = false; + da7219->alc_en = true; } else { da7219->alc_en = false; } |