mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 00:11:22 +00:00
ASoC: max98095: Fix build failure
sound/soc/codecs/max98095.c: In function 'max98095_jack_detect_enable': sound/soc/codecs/max98095.c:2229:14: error: 'struct max98095_priv' has no member named 'jack_detect_delay' sound/soc/codecs/max98095.c:2230:18: error: 'struct max98095_priv' has no member named 'jack_detect_delay' Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
dbf7a733f5
commit
0841b04a5f
@ -2226,8 +2226,8 @@ int max98095_jack_detect_enable(struct snd_soc_codec *codec)
|
||||
if (max98095->pdata->jack_detect_pin5en)
|
||||
detect_enable |= M98095_PIN5EN;
|
||||
|
||||
if (max98095->jack_detect_delay)
|
||||
slew = max98095->jack_detect_delay;
|
||||
if (max98095->pdata->jack_detect_delay)
|
||||
slew = max98095->pdata->jack_detect_delay;
|
||||
|
||||
ret = snd_soc_write(codec, M98095_08E_JACK_DC_SLEW, slew);
|
||||
if (ret < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user