aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShailendra Verma <shailendra.capricorn@gmail.com>2015-05-26 17:08:37 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-05-26 17:16:11 -0400
commite002273b37821941623d231b5c7346778b486c9b (patch)
treecf4afa55a0f08f3a6410d585b493f12a4b8a8c4b
parentfeb9eba80cce00c73a79ba22a5962657afadc476 (diff)
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: Shailendra Verma <shailendra.capricorn@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/mouse/synaptics_i2c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/mouse/synaptics_i2c.c b/drivers/input/mouse/synaptics_i2c.c
index 878f18498f3b..ffceedcaf3c8 100644
--- a/drivers/input/mouse/synaptics_i2c.c
+++ b/drivers/input/mouse/synaptics_i2c.c
@@ -185,7 +185,7 @@
185#define NO_DATA_SLEEP_MSECS (MSEC_PER_SEC / 4) 185#define NO_DATA_SLEEP_MSECS (MSEC_PER_SEC / 4)
186 186
187/* Control touchpad's No Deceleration option */ 187/* Control touchpad's No Deceleration option */
188static bool no_decel = 1; 188static bool no_decel = true;
189module_param(no_decel, bool, 0644); 189module_param(no_decel, bool, 0644);
190MODULE_PARM_DESC(no_decel, "No Deceleration. Default = 1 (on)"); 190MODULE_PARM_DESC(no_decel, "No Deceleration. Default = 1 (on)");
191 191
@@ -340,9 +340,9 @@ static bool synaptics_i2c_get_input(struct synaptics_i2c *touch)
340 s32 data; 340 s32 data;
341 s8 x_delta, y_delta; 341 s8 x_delta, y_delta;
342 342
343 /* Deal with spontanious resets and errors */ 343 /* Deal with spontaneous resets and errors */
344 if (synaptics_i2c_check_error(touch->client)) 344 if (synaptics_i2c_check_error(touch->client))
345 return 0; 345 return false;
346 346
347 /* Get Gesture Bit */ 347 /* Get Gesture Bit */
348 data = synaptics_i2c_reg_get(touch->client, DATA_REG0); 348 data = synaptics_i2c_reg_get(touch->client, DATA_REG0);