diff options
author | Mark Brown <broonie@linaro.org> | 2014-03-13 14:19:32 +0000 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-13 14:19:32 +0000 |
commit | 4c11a761b8cff3d1941a53ec2a2bb2279ca38b44 (patch) | |
tree | d321b527b61727afbcf606766a529dc6a36aa7b8 /sound | |
parent | 2620954d64f6f067b785faf03738b637f3473ca7 (diff) | |
parent | f1adf5be51a952d06760d8b38c55e209bbf7054e (diff) |
Merge remote-tracking branch 'asoc/topic/jack' into asoc-next
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/soc-jack.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/soc/soc-jack.c b/sound/soc/soc-jack.c index 23d43dac91da..b903f822d1b2 100644 --- a/sound/soc/soc-jack.c +++ b/sound/soc/soc-jack.c @@ -250,7 +250,7 @@ static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio) report = 0; if (gpio->jack_status_check) - report = gpio->jack_status_check(); + report = gpio->jack_status_check(gpio->data); snd_soc_jack_report(jack, report, gpio->report); } @@ -342,7 +342,8 @@ int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, gpio_export(gpios[i].gpio, false); /* Update initial jack status */ - snd_soc_jack_gpio_detect(&gpios[i]); + schedule_delayed_work(&gpios[i].work, + msecs_to_jiffies(gpios[i].debounce_time)); } return 0; |