mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
ASoC: Prevent system suspend while debouncing wakeup capable GPIO jacks
If the device associated with a GPIO jack is wakeup capable then disable suspend while we're debouncing the jack so that we skip suspends that race with the jack. Note that currently the GPIO based jack has a CODEC associated with it which we're using right now. These jacks should be reparented against the card itself and this code adjusted. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
parent
cb2b3cf1fe
commit
f9a67059d4
1 changed files with 4 additions and 0 deletions
|
@ -209,6 +209,10 @@ static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
|
|||
static irqreturn_t gpio_handler(int irq, void *data)
|
||||
{
|
||||
struct snd_soc_jack_gpio *gpio = data;
|
||||
struct device *dev = gpio->jack->codec->card->dev;
|
||||
|
||||
if (device_may_wakeup(dev))
|
||||
pm_wakeup_event(dev, gpio->debounce_time + 50);
|
||||
|
||||
schedule_delayed_work(&gpio->work,
|
||||
msecs_to_jiffies(gpio->debounce_time));
|
||||
|
|
Loading…
Reference in a new issue