Skip to content
Snippets Groups Projects
Commit 458f7f8f authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

sound: Fixup the last user of the old irq functions


I had seen that before, but now that I removed set_irq_wake it broke.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 28959f26
No related branches found
No related tags found
No related merge requests found
......@@ -331,7 +331,7 @@ int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
goto err;
if (gpios[i].wake) {
ret = set_irq_wake(gpio_to_irq(gpios[i].gpio), 1);
ret = irq_set_irq_wake(gpio_to_irq(gpios[i].gpio), 1);
if (ret != 0)
printk(KERN_ERR
"Failed to mark GPIO %d as wake source: %d\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment