aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorLuis Ortega <luiorpe1@upv.es>2014-01-27 15:27:06 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2014-01-28 01:35:00 -0500
commitdeb4981985ff2626a449cdeff2beaeb21986cfce (patch)
treeae93f0acc447fbbe75d3f96793481ed5f34c10c2 /drivers/input
parent1f906f8376c2d53dca347b15c0caef71d91087b4 (diff)
Input: zforce - fix spelling errors
Fixed a few spelling errors. Signed-off-by: Luis Ortega <luiorpe1@upv.es> Acked-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/zforce_ts.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/input/touchscreen/zforce_ts.c b/drivers/input/touchscreen/zforce_ts.c
index 4ffe4cc3b234..9ce551fea97b 100644
--- a/drivers/input/touchscreen/zforce_ts.c
+++ b/drivers/input/touchscreen/zforce_ts.c
@@ -64,7 +64,7 @@
64#define RESPONSE_STATUS 0X1e 64#define RESPONSE_STATUS 0X1e
65 65
66/* 66/*
67 * Notifications are send by the touch controller without 67 * Notifications are sent by the touch controller without
68 * being requested by the driver and include for example 68 * being requested by the driver and include for example
69 * touch indications 69 * touch indications
70 */ 70 */
@@ -103,8 +103,8 @@ struct zforce_point {
103 * @suspended device suspended 103 * @suspended device suspended
104 * @access_mutex serialize i2c-access, to keep multipart reads together 104 * @access_mutex serialize i2c-access, to keep multipart reads together
105 * @command_done completion to wait for the command result 105 * @command_done completion to wait for the command result
106 * @command_mutex serialize commands send to the ic 106 * @command_mutex serialize commands sent to the ic
107 * @command_waiting the id of the command that that is currently waiting 107 * @command_waiting the id of the command that is currently waiting
108 * for a result 108 * for a result
109 * @command_result returned result of the command 109 * @command_result returned result of the command
110 */ 110 */
@@ -332,7 +332,7 @@ static int zforce_touch_event(struct zforce_ts *ts, u8 *payload)
332 332
333 count = payload[0]; 333 count = payload[0];
334 if (count > ZFORCE_REPORT_POINTS) { 334 if (count > ZFORCE_REPORT_POINTS) {
335 dev_warn(&client->dev, "to many coordinates %d, expected max %d\n", 335 dev_warn(&client->dev, "too many coordinates %d, expected max %d\n",
336 count, ZFORCE_REPORT_POINTS); 336 count, ZFORCE_REPORT_POINTS);
337 count = ZFORCE_REPORT_POINTS; 337 count = ZFORCE_REPORT_POINTS;
338 } 338 }
@@ -789,7 +789,7 @@ static int zforce_probe(struct i2c_client *client,
789 return ret; 789 return ret;
790 } 790 }
791 791
792 /* this gets the firmware version among other informations */ 792 /* this gets the firmware version among other information */
793 ret = zforce_command_wait(ts, COMMAND_STATUS); 793 ret = zforce_command_wait(ts, COMMAND_STATUS);
794 if (ret < 0) { 794 if (ret < 0) {
795 dev_err(&client->dev, "couldn't get status, %d\n", ret); 795 dev_err(&client->dev, "couldn't get status, %d\n", ret);