alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: max98095: Fix build failure
@ 2012-04-02 14:03 Mark Brown
  2012-04-02 18:06 ` Rhyland Klein
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Brown @ 2012-04-02 14:03 UTC (permalink / raw)
  To: Rhyland Klein, Liam Girdwood; +Cc: alsa-devel, Mark Brown

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>
---
 sound/soc/codecs/max98095.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c
index 0752840..35179e2 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) {
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-02 18:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-02 14:03 [PATCH] ASoC: max98095: Fix build failure Mark Brown
2012-04-02 18:06 ` Rhyland Klein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).