Commit e002273b authored by Shailendra Verma's avatar Shailendra Verma Committed by Dmitry Torokhov

Input: synaptics_i2c - use proper boolean values

The variable no_decel is bool type so assigning "true" instead of "1".
Also, synaptics_i2c_get_input() has bool return type, so let's use "false"
there.
Signed-off-by: default avatarShailendra Verma <shailendra.capricorn@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent feb9eba8
...@@ -185,7 +185,7 @@ ...@@ -185,7 +185,7 @@
#define NO_DATA_SLEEP_MSECS (MSEC_PER_SEC / 4) #define NO_DATA_SLEEP_MSECS (MSEC_PER_SEC / 4)
/* Control touchpad's No Deceleration option */ /* Control touchpad's No Deceleration option */
static bool no_decel = 1; static bool no_decel = true;
module_param(no_decel, bool, 0644); module_param(no_decel, bool, 0644);
MODULE_PARM_DESC(no_decel, "No Deceleration. Default = 1 (on)"); MODULE_PARM_DESC(no_decel, "No Deceleration. Default = 1 (on)");
...@@ -340,9 +340,9 @@ static bool synaptics_i2c_get_input(struct synaptics_i2c *touch) ...@@ -340,9 +340,9 @@ static bool synaptics_i2c_get_input(struct synaptics_i2c *touch)
s32 data; s32 data;
s8 x_delta, y_delta; s8 x_delta, y_delta;
/* Deal with spontanious resets and errors */ /* Deal with spontaneous resets and errors */
if (synaptics_i2c_check_error(touch->client)) if (synaptics_i2c_check_error(touch->client))
return 0; return false;
/* Get Gesture Bit */ /* Get Gesture Bit */
data = synaptics_i2c_reg_get(touch->client, DATA_REG0); data = synaptics_i2c_reg_get(touch->client, DATA_REG0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment