diff options
author | Beomho Seo <beomho.seo@samsung.com> | 2014-05-27 13:22:12 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-05-29 02:48:04 -0400 |
commit | 21d128a768675fc34946c8795f531c6164cbf8ca (patch) | |
tree | 0d7fc3635947880f3c094b7764f9fe34c7c06376 /drivers/input/touchscreen/mcs5000_ts.c | |
parent | 58442239f6d3fe66cb953b948d932237132b4181 (diff) |
Input: mcs5000_ts - fix incorrect input device name
This patch fix a typo error in MELFAS MCS-5000 controller driver.
Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/mcs5000_ts.c')
-rw-r--r-- | drivers/input/touchscreen/mcs5000_ts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/mcs5000_ts.c b/drivers/input/touchscreen/mcs5000_ts.c index 647e36f5930e..97a005daad06 100644 --- a/drivers/input/touchscreen/mcs5000_ts.c +++ b/drivers/input/touchscreen/mcs5000_ts.c | |||
@@ -208,7 +208,7 @@ static int mcs5000_ts_probe(struct i2c_client *client, | |||
208 | data->input_dev = input_dev; | 208 | data->input_dev = input_dev; |
209 | data->platform_data = dev_get_platdata(&client->dev); | 209 | data->platform_data = dev_get_platdata(&client->dev); |
210 | 210 | ||
211 | input_dev->name = "MELPAS MCS-5000 Touchscreen"; | 211 | input_dev->name = "MELFAS MCS-5000 Touchscreen"; |
212 | input_dev->id.bustype = BUS_I2C; | 212 | input_dev->id.bustype = BUS_I2C; |
213 | input_dev->dev.parent = &client->dev; | 213 | input_dev->dev.parent = &client->dev; |
214 | 214 | ||