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 <[email protected]>
> Cc: Lars-Peter Clausen <[email protected]>
> Cc: Peter Meerwald <[email protected]>
> Cc: Lee Jones <[email protected]>
> Cc: Nishanth Menon <[email protected]>
> Signed-off-by: Grygorii Strashko <[email protected]>
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",
> 

Reply via email to