]> Git Repo - linux.git/commitdiff
ASoC: rt5514-spi: only enable wakeup when fully initialized
authorBrian Norris <[email protected]>
Sat, 16 Dec 2017 04:07:23 +0000 (20:07 -0800)
committerMark Brown <[email protected]>
Tue, 19 Dec 2017 11:08:03 +0000 (11:08 +0000)
If an rt5514-spi device is probed but the platform hasn't linked it in,
we might never fully request the SPI IRQ, nor configure the rt5514 DSP,
but we still might try to enable the SPI IRQ (enable_irq_wake()). This
is bad, and among other things, can cause the interrupt to trigger every
time we try to suspend the system (e.g., because the interrupt trigger
setting was never set properly).

Instead of setting our wakeup capabilities in the SPI driver probe
routine, let's wait until we've actually requested the IRQ.

Fixes issues seen on the "kevin" Chromebook (Samsung Chromebook Plus).

Fixes: 58f1c07d23cd ("ASoC: rt5514: Voice wakeup support.")
Signed-off-by: Brian Norris <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/codecs/rt5514-spi.c

index ca6a90d8fc394402b8d65b69a4933bdd40d46ab0..64bf26cec20d535314551ae542f8c28ed25352dc 100644 (file)
@@ -289,6 +289,8 @@ static int rt5514_spi_pcm_probe(struct snd_soc_platform *platform)
                        dev_err(&rt5514_spi->dev,
                                "%s Failed to reguest IRQ: %d\n", __func__,
                                ret);
+               else
+                       device_init_wakeup(rt5514_dsp->dev, true);
        }
 
        return 0;
@@ -456,8 +458,6 @@ static int rt5514_spi_probe(struct spi_device *spi)
                return ret;
        }
 
-       device_init_wakeup(&spi->dev, true);
-
        return 0;
 }
 
This page took 0.061343 seconds and 4 git commands to generate.