Commit deb49819 authored by Luis Ortega's avatar Luis Ortega Committed by Dmitry Torokhov

Input: zforce - fix spelling errors

Fixed a few spelling errors.
Signed-off-by: default avatarLuis Ortega <luiorpe1@upv.es>
Acked-by: default avatarHeiko Stuebner <heiko@sntech.de>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 1f906f83
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
#define RESPONSE_STATUS 0X1e #define RESPONSE_STATUS 0X1e
/* /*
* Notifications are send by the touch controller without * Notifications are sent by the touch controller without
* being requested by the driver and include for example * being requested by the driver and include for example
* touch indications * touch indications
*/ */
...@@ -103,8 +103,8 @@ struct zforce_point { ...@@ -103,8 +103,8 @@ struct zforce_point {
* @suspended device suspended * @suspended device suspended
* @access_mutex serialize i2c-access, to keep multipart reads together * @access_mutex serialize i2c-access, to keep multipart reads together
* @command_done completion to wait for the command result * @command_done completion to wait for the command result
* @command_mutex serialize commands send to the ic * @command_mutex serialize commands sent to the ic
* @command_waiting the id of the command that that is currently waiting * @command_waiting the id of the command that is currently waiting
* for a result * for a result
* @command_result returned result of the command * @command_result returned result of the command
*/ */
...@@ -332,7 +332,7 @@ static int zforce_touch_event(struct zforce_ts *ts, u8 *payload) ...@@ -332,7 +332,7 @@ static int zforce_touch_event(struct zforce_ts *ts, u8 *payload)
count = payload[0]; count = payload[0];
if (count > ZFORCE_REPORT_POINTS) { if (count > ZFORCE_REPORT_POINTS) {
dev_warn(&client->dev, "to many coordinates %d, expected max %d\n", dev_warn(&client->dev, "too many coordinates %d, expected max %d\n",
count, ZFORCE_REPORT_POINTS); count, ZFORCE_REPORT_POINTS);
count = ZFORCE_REPORT_POINTS; count = ZFORCE_REPORT_POINTS;
} }
...@@ -789,7 +789,7 @@ static int zforce_probe(struct i2c_client *client, ...@@ -789,7 +789,7 @@ static int zforce_probe(struct i2c_client *client,
return ret; return ret;
} }
/* this gets the firmware version among other informations */ /* this gets the firmware version among other information */
ret = zforce_command_wait(ts, COMMAND_STATUS); ret = zforce_command_wait(ts, COMMAND_STATUS);
if (ret < 0) { if (ret < 0) {
dev_err(&client->dev, "couldn't get status, %d\n", ret); dev_err(&client->dev, "couldn't get status, %d\n", ret);
......
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