Commit 0859c176 authored by Roi L's avatar Roi L Committed by Dmitry Torokhov
Browse files

Input: rotary_encoder - don't double assign input->dev.parent



devm_input_allocate_device() already assigns the @dev.parent field of the
input device/structure, so there's no need to reassign input->dev.parent
to dev.

Signed-off-by: default avatarRoi L <roeilev321_@outlook.com>
Link: https://lore.kernel.org/r/PH0P220MB0460B69CA018F5515F5FACDDDD53A@PH0P220MB0460.NAMP220.PROD.OUTLOOK.COM


Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 0b64150c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -251,7 +251,6 @@ static int rotary_encoder_probe(struct platform_device *pdev)

	input->name = pdev->name;
	input->id.bustype = BUS_HOST;
	input->dev.parent = dev;

	if (encoder->relative_axis)
		input_set_capability(input, EV_REL, encoder->axis);