ASoC: soc-jack: Fix checking return value of request_any_context_irq
request_any_context_irq() returns a negative value on failure. On success, it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: stable@kernel.orG
This commit is contained in:
parent
b8487928f5
commit
d2b4c7bd7e
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
|
||||||
IRQF_TRIGGER_FALLING,
|
IRQF_TRIGGER_FALLING,
|
||||||
gpios[i].name,
|
gpios[i].name,
|
||||||
&gpios[i]);
|
&gpios[i]);
|
||||||
if (ret)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
if (gpios[i].wake) {
|
if (gpios[i].wake) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue