On 26/02/16 15:42, Grygorii Strashko wrote: > Palmas gpadc IRQs are nested threaded and this flag is not required for nested > irqs anymore, since commit 3c646f2c6aa9 ("genirq: Don't suspend nested_thread > irqs over system suspend") was merged. > > Cc: Hartmut Knaack <knaack.h@xxxxxx> > Cc: Lars-Peter Clausen <lars@xxxxxxxxxx> > Cc: Peter Meerwald <pmeerw@xxxxxxxxxx> > Cc: Lee Jones <lee.jones@xxxxxxxxxx> > Cc: Nishanth Menon <nm@xxxxxx> > Signed-off-by: Grygorii Strashko <grygorii.strashko@xxxxxx> Applied to the togreg branch of iio.git - initially pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/palmas_gpadc.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/iio/adc/palmas_gpadc.c b/drivers/iio/adc/palmas_gpadc.c > index f42eb8a..2bbf0c5 100644 > --- a/drivers/iio/adc/palmas_gpadc.c > +++ b/drivers/iio/adc/palmas_gpadc.c > @@ -534,7 +534,7 @@ static int palmas_gpadc_probe(struct platform_device *pdev) > } > ret = request_threaded_irq(adc->irq, NULL, > palmas_gpadc_irq, > - IRQF_ONESHOT | IRQF_EARLY_RESUME, dev_name(adc->dev), > + IRQF_ONESHOT, dev_name(adc->dev), > adc); > if (ret < 0) { > dev_err(adc->dev, > @@ -549,7 +549,7 @@ static int palmas_gpadc_probe(struct platform_device *pdev) > adc->irq_auto_0 = platform_get_irq(pdev, 1); > ret = request_threaded_irq(adc->irq_auto_0, NULL, > palmas_gpadc_irq_auto, > - IRQF_ONESHOT | IRQF_EARLY_RESUME, > + IRQF_ONESHOT, > "palmas-adc-auto-0", adc); > if (ret < 0) { > dev_err(adc->dev, "request auto0 irq %d failed: %d\n", > @@ -565,7 +565,7 @@ static int palmas_gpadc_probe(struct platform_device *pdev) > adc->irq_auto_1 = platform_get_irq(pdev, 2); > ret = request_threaded_irq(adc->irq_auto_1, NULL, > palmas_gpadc_irq_auto, > - IRQF_ONESHOT | IRQF_EARLY_RESUME, > + IRQF_ONESHOT, > "palmas-adc-auto-1", adc); > if (ret < 0) { > dev_err(adc->dev, "request auto1 irq %d failed: %d\n", > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html