Skip to content
Snippets Groups Projects
Commit e5afdf58 authored by Holger Brunck's avatar Holger Brunck Committed by Wolfgang Denk
Browse files

kw_gpio: fix error in kw_gpio_direction_input


The function kw_gpio_is_valid returns zero on success, so
adapt the error check accordingly.

Signed-off-by: default avatarHolger Brunck <holger.brunck@keymile.com>
cc: Prafulla Wadaskar <prafulla@marvell.com>
cc: Dieter Kiermaier <dk-arm-linux@gmx.de>
parent 0d2b0a8f
No related branches found
No related tags found
Loading
......@@ -109,7 +109,7 @@ void kw_gpio_set_valid(unsigned pin, int mode)
*/
int kw_gpio_direction_input(unsigned pin)
{
if (!kw_gpio_is_valid(pin, GPIO_INPUT_OK))
if (kw_gpio_is_valid(pin, GPIO_INPUT_OK) != 0)
return 1;
/* Configure GPIO direction. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment