From: Beomho Seo <beomho.seo@samsung.com>
Date: Tue, 27 May 2014 17:21:51 +0000 (-0700)
Subject: Input: mms114 - fix incorrect input device name
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=58442239f6d3fe66cb953b948d932237132b4181;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git

Input: mms114 - fix incorrect input device name

This patch fix a typo error in mms114 touchscreen driver.

Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c
index 9d83413bbba7..372bbf7658fe 100644
--- a/drivers/input/touchscreen/mms114.c
+++ b/drivers/input/touchscreen/mms114.c
@@ -456,7 +456,7 @@ static int mms114_probe(struct i2c_client *client,
 	data->input_dev = input_dev;
 	data->pdata = pdata;
 
-	input_dev->name = "MELPAS MMS114 Touchscreen";
+	input_dev->name = "MELFAS MMS114 Touchscreen";
 	input_dev->id.bustype = BUS_I2C;
 	input_dev->dev.parent = &client->dev;
 	input_dev->open = mms114_input_open;