On Thu, Dec 10, 2020 at 10:42 PM Gwendal Grignou <gwendal@xxxxxxxxxxxx> wrote: > > Already done in boiler plate code > Worth noting that 'data->dev == dev' Reviewed-by: Alexandru Ardelean <alexandru.ardelean@xxxxxxxxxx> > Signed-off-by: Gwendal Grignou <gwendal@xxxxxxxxxxxx> > --- > drivers/iio/potentiostat/lmp91000.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/iio/potentiostat/lmp91000.c b/drivers/iio/potentiostat/lmp91000.c > index f34ca769dc20..8a9c576616ee 100644 > --- a/drivers/iio/potentiostat/lmp91000.c > +++ b/drivers/iio/potentiostat/lmp91000.c > @@ -322,7 +322,7 @@ static int lmp91000_probe(struct i2c_client *client, > return PTR_ERR(data->regmap); > } > > - data->trig = devm_iio_trigger_alloc(data->dev, "%s-mux%d", > + data->trig = devm_iio_trigger_alloc(dev, "%s-mux%d", > indio_dev->name, indio_dev->id); > if (!data->trig) { > dev_err(dev, "cannot allocate iio trigger.\n"); > @@ -330,7 +330,6 @@ static int lmp91000_probe(struct i2c_client *client, > } > > data->trig->ops = &lmp91000_trigger_ops; > - data->trig->dev.parent = dev; > init_completion(&data->completion); > > ret = lmp91000_read_config(data); > -- > 2.29.2.576.ga3fc446d84-goog >