aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorOctavian Purdila <octavian.purdila@intel.com>2014-09-19 16:22:44 -0400
committerLinus Walleij <linus.walleij@linaro.org>2014-09-24 04:53:42 -0400
commit295494af0695bc190e6b939df1036af898c2856f (patch)
treee25aaff1a68a794d720f597a48ee9206ce5994a2 /drivers/gpio
parent4f51b91335a63b2672a0f21fd13a684c8e35c4e8 (diff)
gpiolib: add irq_not_threaded flag to gpio_chip
Some GPIO chips (e.g. the DLN2 USB adapter) have blocking get/set operation but do not need a threaded irq handler. Signed-off-by: Octavian Purdila <octavian.purdila@intel.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpiolib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index 4acf8b2e9226..6fdae789ccc9 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -437,7 +437,7 @@ static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
437 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class); 437 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class);
438 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler); 438 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
439 /* Chips that can sleep need nested thread handlers */ 439 /* Chips that can sleep need nested thread handlers */
440 if (chip->can_sleep) 440 if (chip->can_sleep && !chip->irq_not_threaded)
441 irq_set_nested_thread(irq, 1); 441 irq_set_nested_thread(irq, 1);
442#ifdef CONFIG_ARM 442#ifdef CONFIG_ARM
443 set_irq_flags(irq, IRQF_VALID); 443 set_irq_flags(irq, IRQF_VALID);