1
0
Fork 0

macintosh/ams-input: Use true and false for boolean values

Assign true or false to boolean variables instead of an integer value.

This issue was detected with the help of Coccinelle

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Reviewed-by: Michael Hanselmann <public@hansmi.ch>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
zero-colors
Gustavo A. R. Silva 2018-01-23 19:48:46 -06:00 committed by Michael Ellerman
parent 4f256d5614
commit 516c32f64f
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ static int ams_input_enable(void)
return error;
}
joystick = 1;
joystick = true;
return 0;
}
@ -104,7 +104,7 @@ static void ams_input_disable(void)
ams_info.idev = NULL;
}
joystick = 0;
joystick = false;
}
static ssize_t ams_input_show_joystick(struct device *dev,