aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/ili210x.c
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2015-05-20 23:54:02 +0900
committerJiri Kosina <jkosina@suse.com>2015-08-07 13:58:05 +0200
commit971bd8fa369a37b047c26e9a47d4c1f5d2dce4d3 (patch)
tree997716fb8a689711da6aa1088d1ab0d0dfdba2c7 /drivers/input/touchscreen/ili210x.c
parentLinux 4.2-rc5 (diff)
downloadlinux-dev-971bd8fa369a37b047c26e9a47d4c1f5d2dce4d3.tar.xz
linux-dev-971bd8fa369a37b047c26e9a47d4c1f5d2dce4d3.zip
treewide: Fix typo in printk
This patch fix spelling typo inv various part of sources. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to 'drivers/input/touchscreen/ili210x.c')
-rw-r--r--drivers/input/touchscreen/ili210x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/ili210x.c b/drivers/input/touchscreen/ili210x.c
index da6dc819c846..586bee407d9a 100644
--- a/drivers/input/touchscreen/ili210x.c
+++ b/drivers/input/touchscreen/ili210x.c
@@ -216,7 +216,7 @@ static int ili210x_i2c_probe(struct i2c_client *client,
/* get panel info */
error = ili210x_read_reg(client, REG_PANEL_INFO, &panel, sizeof(panel));
if (error) {
- dev_err(dev, "Failed to get panel informations, err: %d\n",
+ dev_err(dev, "Failed to get panel information, err: %d\n",
error);
return error;
}
@@ -276,7 +276,7 @@ static int ili210x_i2c_probe(struct i2c_client *client,
error = input_register_device(priv->input);
if (error) {
- dev_err(dev, "Cannot regiser input device, err: %d\n", error);
+ dev_err(dev, "Cannot register input device, err: %d\n", error);
goto err_remove_sysfs;
}