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

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

Input: mouse - drop unnecessary calls to input_set_drvdata



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: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 0ff44b0f
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -414,8 +414,6 @@ static int cypress_set_input_params(struct input_dev *input,
	__set_bit(BTN_RIGHT, input->keybit);
	__set_bit(BTN_MIDDLE, input->keybit);

	input_set_drvdata(input, cytp);

	return 0;
}

+0 −1
Original line number Diff line number Diff line
@@ -87,7 +87,6 @@ static int probe_maple_mouse(struct device *dev)
	mse->dev = input_dev;
	mse->mdev = mdev;

	input_set_drvdata(input_dev, mse);
	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
	input_dev->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_LEFT) |
		BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE);