Input: touchscreen - drop unnecessary calls to input_set_drvdata
authorGuenter Roeck <linux@roeck-us.net>
Mon, 23 Jan 2017 01:19:12 +0000 (17:19 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 23 Jan 2017 01:22:31 +0000 (17:22 -0800)
Since there is no call to dev_get_drvdata() or input_get_drvdata(),
the call to input_set_drvdata() is unnecessary and can be dropped.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/edt-ft5x06.c
drivers/input/touchscreen/egalax_ts.c
drivers/input/touchscreen/elants_i2c.c
drivers/input/touchscreen/ili210x.c
drivers/input/touchscreen/mcs5000_ts.c
drivers/input/touchscreen/raydium_i2c_ts.c

index 8fc629fb023f82ef769a7cac7b3901b9d2e4f209..8cf8d8d5d4ef4f82b45cc5ecbb959c92be95b699 100644 (file)
@@ -982,7 +982,6 @@ static int edt_ft5x06_ts_probe(struct i2c_client *client,
                return error;
        }
 
-       input_set_drvdata(input, tsdata);
        i2c_set_clientdata(client, tsdata);
 
        irq_flags = irq_get_trigger_type(client->irq);
index 3592a946950b1b78db243dcf01582196b43edb5f..752ae9cf451495c17400d97152f71bee78fee699 100644 (file)
@@ -214,8 +214,6 @@ static int egalax_ts_probe(struct i2c_client *client,
                             ABS_MT_POSITION_Y, 0, EGALAX_MAX_Y, 0, 0);
        input_mt_init_slots(input_dev, MAX_SUPPORT_POINTS, 0);
 
-       input_set_drvdata(input_dev, ts);
-
        error = devm_request_threaded_irq(&client->dev, client->irq, NULL,
                                          egalax_ts_interrupt,
                                          IRQF_TRIGGER_LOW | IRQF_ONESHOT,
index 02aec284decac37b1a93b16b609007c077db7f98..740e4483f4fdf69e523f9044cac82f829847e5fc 100644 (file)
@@ -1260,8 +1260,6 @@ static int elants_i2c_probe(struct i2c_client *client,
        input_abs_set_res(ts->input, ABS_MT_POSITION_X, ts->x_res);
        input_abs_set_res(ts->input, ABS_MT_POSITION_Y, ts->y_res);
 
-       input_set_drvdata(ts->input, ts);
-
        error = input_register_device(ts->input);
        if (error) {
                dev_err(&client->dev,
index 91dc5fb34fe1c222912c415775a8b74843398597..6f76eeedf4652eecdf2c6a24ec6440d504dafb82 100644 (file)
@@ -256,7 +256,6 @@ static int ili210x_i2c_probe(struct i2c_client *client,
        input_set_abs_params(input, ABS_MT_POSITION_X, 0, xmax, 0, 0);
        input_set_abs_params(input, ABS_MT_POSITION_Y, 0, ymax, 0, 0);
 
-       input_set_drvdata(input, priv);
        i2c_set_clientdata(client, priv);
 
        error = request_irq(client->irq, ili210x_irq, pdata->irq_flags,
index 8b47e1fecb25287a48b60a4547deba7bbf90c9dd..90fc07dc98a6bbf86d000da1fc2834190b77c30e 100644 (file)
@@ -221,7 +221,6 @@ static int mcs5000_ts_probe(struct i2c_client *client,
        input_set_abs_params(input_dev, ABS_X, 0, MCS5000_MAX_XC, 0, 0);
        input_set_abs_params(input_dev, ABS_Y, 0, MCS5000_MAX_YC, 0, 0);
 
-       input_set_drvdata(input_dev, data);
        data->input_dev = input_dev;
 
        if (pdata->cfg_pin)
index 2658afa016c94a88bc04489772a183e6e687c2e5..1252e49ccfa1c42455667e7b775343107853d5ba 100644 (file)
@@ -1087,8 +1087,6 @@ static int raydium_i2c_probe(struct i2c_client *client,
        ts->input->name = "Raydium Touchscreen";
        ts->input->id.bustype = BUS_I2C;
 
-       input_set_drvdata(ts->input, ts);
-
        input_set_abs_params(ts->input, ABS_MT_POSITION_X,
                             0, le16_to_cpu(ts->info.x_max), 0, 0);
        input_set_abs_params(ts->input, ABS_MT_POSITION_Y,