get rid of the IRQF_SAMPLE_RANDOM flag

SVN-Revision: 33558
This commit is contained in:
Florian Fainelli
2012-09-26 12:53:58 +00:00
parent 60eec72adb
commit 4a67ccb163
5 changed files with 7 additions and 7 deletions

View File

@@ -1297,7 +1297,7 @@ static void gpio_set_irqenable(int enabled, irqreturn_t (*handler)(int, void *))
if (irq == -EINVAL) return;
if (enabled) {
if (request_irq(irq, handler, IRQF_SHARED | IRQF_SAMPLE_RANDOM, "gpio", handler))
if (request_irq(irq, handler, IRQF_SHARED, "gpio", handler))
return;
} else {
free_irq(irq, handler);