Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7ddf154 authored by Guenter Roeck's avatar Guenter Roeck Committed by Dmitry Torokhov
Browse files

Input: touchscreen - use local variables consistently



If a function declares a variable to access a structure element,
use it consistently.

Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent ad56814f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2509,7 +2509,7 @@ static void mxt_debug_init(struct mxt_data *data)
		dbg->t37_pages = MXT1386_COLUMNS * MXT1386_PAGES_PER_COLUMN;
	else
		dbg->t37_pages = DIV_ROUND_UP(data->xsize *
					      data->info.matrix_ysize *
					      info->matrix_ysize *
					      sizeof(u16),
					      sizeof(dbg->t37_buf->data));

+1 −1
Original line number Diff line number Diff line
@@ -507,7 +507,7 @@ static int mx25_tcq_probe(struct platform_device *pdev)
	struct device *dev = &pdev->dev;
	struct input_dev *idev;
	struct mx25_tcq_priv *priv;
	struct mx25_tsadc *tsadc = dev_get_drvdata(pdev->dev.parent);
	struct mx25_tsadc *tsadc = dev_get_drvdata(dev->parent);
	struct resource *res;
	void __iomem *mem;
	int error;
+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ static int ili210x_i2c_probe(struct i2c_client *client,
		goto err_remove_sysfs;
	}

	device_init_wakeup(&client->dev, 1);
	device_init_wakeup(dev, 1);

	dev_dbg(dev,
		"ILI210x initialized (IRQ: %d), firmware version %d.%d.%d",
+2 −2
Original line number Diff line number Diff line
@@ -461,7 +461,7 @@ static int pixcir_i2c_ts_probe(struct i2c_client *client,
		if (error)
			return error;
	} else {
		dev_err(&client->dev, "platform data not defined\n");
		dev_err(dev, "platform data not defined\n");
		return -EINVAL;
	}

@@ -483,7 +483,7 @@ static int pixcir_i2c_ts_probe(struct i2c_client *client,
	input->id.bustype = BUS_I2C;
	input->open = pixcir_input_open;
	input->close = pixcir_input_close;
	input->dev.parent = &client->dev;
	input->dev.parent = dev;

	if (pdata) {
		input_set_abs_params(input, ABS_MT_POSITION_X, 0, pdata->x_max, 0, 0);
+1 −2
Original line number Diff line number Diff line
@@ -1189,8 +1189,7 @@ static int rohm_bu21023_i2c_probe(struct i2c_client *client,
	error = devm_add_action(dev, rohm_ts_remove_sysfs_group, dev);
	if (error) {
		rohm_ts_remove_sysfs_group(dev);
		dev_err(&client->dev,
			"Failed to add sysfs cleanup action: %d\n",
		dev_err(dev, "Failed to add sysfs cleanup action: %d\n",
			error);
		return error;
	}
Loading