Re: [PATCH v2] gpio: ftgpio010: Fix platform_get_irq's error checking

2017-12-02 Thread Linus Walleij
On Sat, Dec 2, 2017 at 6:01 PM, Arvind Yadav wrote: > The platform_get_irq() function returns negative if an error occurs. > zero or positive number on success. platform_get_irq() error checking > for zero is not correct. > > Signed-off-by: Arvind Yadav

Re: [PATCH v2] gpio: ftgpio010: Fix platform_get_irq's error checking

2017-12-02 Thread Linus Walleij
On Sat, Dec 2, 2017 at 6:01 PM, Arvind Yadav wrote: > The platform_get_irq() function returns negative if an error occurs. > zero or positive number on success. platform_get_irq() error checking > for zero is not correct. > > Signed-off-by: Arvind Yadav > --- > changes in v2: >

[PATCH v2] gpio: ftgpio010: Fix platform_get_irq's error checking

2017-12-02 Thread Arvind Yadav
The platform_get_irq() function returns negative if an error occurs. zero or positive number on success. platform_get_irq() error checking for zero is not correct. Signed-off-by: Arvind Yadav --- changes in v2: It's should be 'irq <= 0' instead of 'irq <

[PATCH v2] gpio: ftgpio010: Fix platform_get_irq's error checking

2017-12-02 Thread Arvind Yadav
The platform_get_irq() function returns negative if an error occurs. zero or positive number on success. platform_get_irq() error checking for zero is not correct. Signed-off-by: Arvind Yadav --- changes in v2: It's should be 'irq <= 0' instead of 'irq < 0'.