Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: gp2ap020a00f: Remove code to set trigger parent

iio_trigger_set_drvdata() sets the trigger device parent to first
argument of viio_trigger_alloc(), no need to do it again in the driver
code.

Given data->client is client, and we call devm_iio_trigger_alloc() with
&client->dev, we do not have to set data->trig->dev.parent to
&data->client->dev anymore.

Signed-off-by: Gwendal Grignou <gwendal@chromium.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20210309193620.2176163-5-gwendal@chromium.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Gwendal Grignou and committed by
Jonathan Cameron
cd214139 5c68f053

-1
-1
drivers/iio/light/gp2ap020a00f.c
··· 1551 1551 } 1552 1552 1553 1553 data->trig->ops = &gp2ap020a00f_trigger_ops; 1554 - data->trig->dev.parent = &data->client->dev; 1555 1554 1556 1555 init_irq_work(&data->work, gp2ap020a00f_iio_trigger_work); 1557 1556