From: Mark Brown Date: Mon, 2 Apr 2012 13:53:13 +0000 (+0100) Subject: ASoC: max98095: Fix build failure X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=0841b04a5ffba5bd5a7f5b49f014adaf639bf3a4;p=linux-edison.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c index 0752840e01c..35179e2c23c 100644 --- a/sound/soc/codecs/max98095.c +++ b/sound/soc/codecs/max98095.c @@ -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) {