aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2019-11-04 15:20:47 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2019-11-11 16:12:01 -0800
commitefda86a49553bc7e44b3f7254208577bff2da932 (patch)
tree6a71937ce826725a77d17fbec45fa7b520b61791 /drivers/input
parentInput: ili210x - handle errors from input_mt_init_slots() (diff)
downloadlinux-dev-efda86a49553bc7e44b3f7254208577bff2da932.tar.xz
linux-dev-efda86a49553bc7e44b3f7254208577bff2da932.zip
Input: ili210x - do not set parent device explicitly
We are using devm_input_allocate_device() that set's up the parent for us, no need to do it ourselves. Tested-by: Adam Ford <aford173@gmail.com> #imx6q-logicpd Tested-by: Sven Van Asbroeck <TheSven73@gmail.com> # ILI2118A variant Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/ili210x.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/ili210x.c b/drivers/input/touchscreen/ili210x.c
index 7dee37901b7b..28e2dd748c5a 100644
--- a/drivers/input/touchscreen/ili210x.c
+++ b/drivers/input/touchscreen/ili210x.c
@@ -365,7 +365,6 @@ static int ili210x_i2c_probe(struct i2c_client *client,
/* Setup input device */
input->name = "ILI210x Touchscreen";
input->id.bustype = BUS_I2C;
- input->dev.parent = dev;
/* Multi touch */
input_set_abs_params(input, ABS_MT_POSITION_X, 0, 0xffff, 0, 0);