diff options
Diffstat (limited to 'drivers/input/misc/rotary_encoder.c')
| -rw-r--r-- | drivers/input/misc/rotary_encoder.c | 9 | 
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c index 22ec62083065..e94cab8133be 100644 --- a/drivers/input/misc/rotary_encoder.c +++ b/drivers/input/misc/rotary_encoder.c @@ -236,12 +236,8 @@ static int rotary_encoder_probe(struct platform_device *pdev)  		device_property_read_bool(dev, "rotary-encoder,relative-axis");  	encoder->gpios = devm_gpiod_get_array(dev, NULL, GPIOD_IN); -	if (IS_ERR(encoder->gpios)) { -		err = PTR_ERR(encoder->gpios); -		if (err != -EPROBE_DEFER) -			dev_err(dev, "unable to get gpios: %d\n", err); -		return err; -	} +	if (IS_ERR(encoder->gpios)) +		return dev_err_probe(dev, PTR_ERR(encoder->gpios), "unable to get gpios\n");  	if (encoder->gpios->ndescs < 2) {  		dev_err(dev, "not enough gpios found\n");  		return -EINVAL; @@ -255,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);  |